| // Copyright (c) 2020 The Chromium Embedded Framework Authors. All rights |
| // reserved. Use of this source code is governed by a BSD-style license that |
| // can be found in the LICENSE file. |
| // |
| // --------------------------------------------------------------------------- |
| // |
| // This file was generated by the CEF translator tool. If making changes by |
| // hand only do so within the body of existing method and function |
| // implementations. See the translator.README.txt file in the tools directory |
| // for more information. |
| // |
| // $hash=3a22edd7a71ffaa44bb7215dcb7c7c0df8dd6a23$ |
| // |
| |
| #include "libcef_dll/ctocpp/waitable_event_ctocpp.h" |
| #include "libcef_dll/shutdown_checker.h" |
| |
| // STATIC METHODS - Body may be edited by hand. |
| |
| NO_SANITIZE("cfi-icall") |
| CefRefPtr<CefWaitableEvent> CefWaitableEvent::CreateWaitableEvent( |
| bool automatic_reset, |
| bool initially_signaled) { |
| shutdown_checker::AssertNotShutdown(); |
| |
| // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING |
| |
| // Execute |
| cef_waitable_event_t* _retval = |
| cef_waitable_event_create(automatic_reset, initially_signaled); |
| |
| // Return type: refptr_same |
| return CefWaitableEventCToCpp::Wrap(_retval); |
| } |
| |
| // VIRTUAL METHODS - Body may be edited by hand. |
| |
| NO_SANITIZE("cfi-icall") void CefWaitableEventCToCpp::Reset() { |
| shutdown_checker::AssertNotShutdown(); |
| |
| cef_waitable_event_t* _struct = GetStruct(); |
| if (CEF_MEMBER_MISSING(_struct, reset)) |
| return; |
| |
| // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING |
| |
| // Execute |
| _struct->reset(_struct); |
| } |
| |
| NO_SANITIZE("cfi-icall") void CefWaitableEventCToCpp::Signal() { |
| shutdown_checker::AssertNotShutdown(); |
| |
| cef_waitable_event_t* _struct = GetStruct(); |
| if (CEF_MEMBER_MISSING(_struct, signal)) |
| return; |
| |
| // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING |
| |
| // Execute |
| _struct->signal(_struct); |
| } |
| |
| NO_SANITIZE("cfi-icall") bool CefWaitableEventCToCpp::IsSignaled() { |
| shutdown_checker::AssertNotShutdown(); |
| |
| cef_waitable_event_t* _struct = GetStruct(); |
| if (CEF_MEMBER_MISSING(_struct, is_signaled)) |
| return false; |
| |
| // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING |
| |
| // Execute |
| int _retval = _struct->is_signaled(_struct); |
| |
| // Return type: bool |
| return _retval ? true : false; |
| } |
| |
| NO_SANITIZE("cfi-icall") void CefWaitableEventCToCpp::Wait() { |
| shutdown_checker::AssertNotShutdown(); |
| |
| cef_waitable_event_t* _struct = GetStruct(); |
| if (CEF_MEMBER_MISSING(_struct, wait)) |
| return; |
| |
| // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING |
| |
| // Execute |
| _struct->wait(_struct); |
| } |
| |
| NO_SANITIZE("cfi-icall") bool CefWaitableEventCToCpp::TimedWait(int64 max_ms) { |
| shutdown_checker::AssertNotShutdown(); |
| |
| cef_waitable_event_t* _struct = GetStruct(); |
| if (CEF_MEMBER_MISSING(_struct, timed_wait)) |
| return false; |
| |
| // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING |
| |
| // Execute |
| int _retval = _struct->timed_wait(_struct, max_ms); |
| |
| // Return type: bool |
| return _retval ? true : false; |
| } |
| |
| // CONSTRUCTOR - Do not edit by hand. |
| |
| CefWaitableEventCToCpp::CefWaitableEventCToCpp() {} |
| |
| // DESTRUCTOR - Do not edit by hand. |
| |
| CefWaitableEventCToCpp::~CefWaitableEventCToCpp() { |
| shutdown_checker::AssertNotShutdown(); |
| } |
| |
| template <> |
| cef_waitable_event_t* |
| CefCToCppRefCounted<CefWaitableEventCToCpp, |
| CefWaitableEvent, |
| cef_waitable_event_t>::UnwrapDerived(CefWrapperType type, |
| CefWaitableEvent* c) { |
| NOTREACHED() << "Unexpected class type: " << type; |
| return nullptr; |
| } |
| |
| template <> |
| CefWrapperType CefCToCppRefCounted<CefWaitableEventCToCpp, |
| CefWaitableEvent, |
| cef_waitable_event_t>::kWrapperType = |
| WT_WAITABLE_EVENT; |