2017-01-11 00:00:30 +01:00
|
|
|
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
2016-11-15 22:18:41 +01:00
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/waitable_event_cpptoc.h"
|
|
|
|
|
|
|
|
|
|
|
|
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
|
|
|
CEF_EXPORT cef_waitable_event_t* cef_waitable_event_create(int automatic_reset,
|
|
|
|
int initially_signaled) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefRefPtr<CefWaitableEvent> _retval = CefWaitableEvent::CreateWaitableEvent(
|
|
|
|
automatic_reset?true:false,
|
|
|
|
initially_signaled?true:false);
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefWaitableEventCppToC::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
|
|
|
void CEF_CALLBACK waitable_event_reset(struct _cef_waitable_event_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefWaitableEventCppToC::Get(self)->Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CEF_CALLBACK waitable_event_signal(struct _cef_waitable_event_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefWaitableEventCppToC::Get(self)->Signal();
|
|
|
|
}
|
|
|
|
|
|
|
|
int CEF_CALLBACK waitable_event_is_signaled(
|
|
|
|
struct _cef_waitable_event_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefWaitableEventCppToC::Get(self)->IsSignaled();
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CEF_CALLBACK waitable_event_wait(struct _cef_waitable_event_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefWaitableEventCppToC::Get(self)->Wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
int CEF_CALLBACK waitable_event_timed_wait(struct _cef_waitable_event_t* self,
|
|
|
|
int64 max_ms) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefWaitableEventCppToC::Get(self)->TimedWait(
|
|
|
|
max_ms);
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefWaitableEventCppToC::CefWaitableEventCppToC() {
|
|
|
|
GetStruct()->reset = waitable_event_reset;
|
|
|
|
GetStruct()->signal = waitable_event_signal;
|
|
|
|
GetStruct()->is_signaled = waitable_event_is_signaled;
|
|
|
|
GetStruct()->wait = waitable_event_wait;
|
|
|
|
GetStruct()->timed_wait = waitable_event_timed_wait;
|
|
|
|
}
|
|
|
|
|
2017-02-09 23:07:43 +01:00
|
|
|
template<> CefRefPtr<CefWaitableEvent> CefCppToCRefCounted<CefWaitableEventCppToC,
|
2016-11-15 22:18:41 +01:00
|
|
|
CefWaitableEvent, cef_waitable_event_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
cef_waitable_event_t* s) {
|
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DCHECK_IS_ON()
|
2017-02-09 23:07:43 +01:00
|
|
|
template<> base::AtomicRefCount CefCppToCRefCounted<CefWaitableEventCppToC,
|
2016-11-15 22:18:41 +01:00
|
|
|
CefWaitableEvent, cef_waitable_event_t>::DebugObjCt = 0;
|
|
|
|
#endif
|
|
|
|
|
2017-02-09 23:07:43 +01:00
|
|
|
template<> CefWrapperType CefCppToCRefCounted<CefWaitableEventCppToC,
|
|
|
|
CefWaitableEvent, cef_waitable_event_t>::kWrapperType = WT_WAITABLE_EVENT;
|