192 lines
5.6 KiB
C++
192 lines
5.6 KiB
C++
// Copyright (c) 2012 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.
|
|
//
|
|
|
|
#include "libcef_dll/cpptoc/render_process_handler_cpptoc.h"
|
|
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/frame_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/process_message_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/v8context_ctocpp.h"
|
|
|
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
void CEF_CALLBACK render_process_handler_on_render_thread_created(
|
|
struct _cef_render_process_handler_t* self) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefRenderProcessHandlerCppToC::Get(self)->OnRenderThreadCreated();
|
|
}
|
|
|
|
void CEF_CALLBACK render_process_handler_on_web_kit_initialized(
|
|
struct _cef_render_process_handler_t* self) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefRenderProcessHandlerCppToC::Get(self)->OnWebKitInitialized();
|
|
}
|
|
|
|
void CEF_CALLBACK render_process_handler_on_browser_created(
|
|
struct _cef_render_process_handler_t* self, cef_browser_t* browser) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: browser; type: refptr_diff
|
|
DCHECK(browser);
|
|
if (!browser)
|
|
return;
|
|
|
|
// Execute
|
|
CefRenderProcessHandlerCppToC::Get(self)->OnBrowserCreated(
|
|
CefBrowserCToCpp::Wrap(browser));
|
|
}
|
|
|
|
void CEF_CALLBACK render_process_handler_on_browser_destroyed(
|
|
struct _cef_render_process_handler_t* self, cef_browser_t* browser) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: browser; type: refptr_diff
|
|
DCHECK(browser);
|
|
if (!browser)
|
|
return;
|
|
|
|
// Execute
|
|
CefRenderProcessHandlerCppToC::Get(self)->OnBrowserDestroyed(
|
|
CefBrowserCToCpp::Wrap(browser));
|
|
}
|
|
|
|
void CEF_CALLBACK render_process_handler_on_context_created(
|
|
struct _cef_render_process_handler_t* self, cef_browser_t* browser,
|
|
cef_frame_t* frame, struct _cef_v8context_t* context) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: browser; type: refptr_diff
|
|
DCHECK(browser);
|
|
if (!browser)
|
|
return;
|
|
// Verify param: frame; type: refptr_diff
|
|
DCHECK(frame);
|
|
if (!frame)
|
|
return;
|
|
// Verify param: context; type: refptr_diff
|
|
DCHECK(context);
|
|
if (!context)
|
|
return;
|
|
|
|
// Execute
|
|
CefRenderProcessHandlerCppToC::Get(self)->OnContextCreated(
|
|
CefBrowserCToCpp::Wrap(browser),
|
|
CefFrameCToCpp::Wrap(frame),
|
|
CefV8ContextCToCpp::Wrap(context));
|
|
}
|
|
|
|
void CEF_CALLBACK render_process_handler_on_context_released(
|
|
struct _cef_render_process_handler_t* self, cef_browser_t* browser,
|
|
cef_frame_t* frame, struct _cef_v8context_t* context) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: browser; type: refptr_diff
|
|
DCHECK(browser);
|
|
if (!browser)
|
|
return;
|
|
// Verify param: frame; type: refptr_diff
|
|
DCHECK(frame);
|
|
if (!frame)
|
|
return;
|
|
// Verify param: context; type: refptr_diff
|
|
DCHECK(context);
|
|
if (!context)
|
|
return;
|
|
|
|
// Execute
|
|
CefRenderProcessHandlerCppToC::Get(self)->OnContextReleased(
|
|
CefBrowserCToCpp::Wrap(browser),
|
|
CefFrameCToCpp::Wrap(frame),
|
|
CefV8ContextCToCpp::Wrap(context));
|
|
}
|
|
|
|
int CEF_CALLBACK render_process_handler_on_process_message_recieved(
|
|
struct _cef_render_process_handler_t* self, cef_browser_t* browser,
|
|
enum cef_process_id_t source_process, cef_process_message_t* message) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: browser; type: refptr_diff
|
|
DCHECK(browser);
|
|
if (!browser)
|
|
return 0;
|
|
// Verify param: message; type: refptr_diff
|
|
DCHECK(message);
|
|
if (!message)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval = CefRenderProcessHandlerCppToC::Get(
|
|
self)->OnProcessMessageRecieved(
|
|
CefBrowserCToCpp::Wrap(browser),
|
|
source_process,
|
|
CefProcessMessageCToCpp::Wrap(message));
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
CefRenderProcessHandlerCppToC::CefRenderProcessHandlerCppToC(
|
|
CefRenderProcessHandler* cls)
|
|
: CefCppToC<CefRenderProcessHandlerCppToC, CefRenderProcessHandler,
|
|
cef_render_process_handler_t>(cls) {
|
|
struct_.struct_.on_render_thread_created =
|
|
render_process_handler_on_render_thread_created;
|
|
struct_.struct_.on_web_kit_initialized =
|
|
render_process_handler_on_web_kit_initialized;
|
|
struct_.struct_.on_browser_created =
|
|
render_process_handler_on_browser_created;
|
|
struct_.struct_.on_browser_destroyed =
|
|
render_process_handler_on_browser_destroyed;
|
|
struct_.struct_.on_context_created =
|
|
render_process_handler_on_context_created;
|
|
struct_.struct_.on_context_released =
|
|
render_process_handler_on_context_released;
|
|
struct_.struct_.on_process_message_recieved =
|
|
render_process_handler_on_process_message_recieved;
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
template<> long CefCppToC<CefRenderProcessHandlerCppToC,
|
|
CefRenderProcessHandler, cef_render_process_handler_t>::DebugObjCt = 0;
|
|
#endif
|
|
|