2016-01-08 20:00:27 +01:00
|
|
|
// Copyright (c) 2016 The Chromium Embedded Framework Authors. All rights
|
2014-07-10 17:41:30 +02: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/print_dialog_callback_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/print_settings_cpptoc.h"
|
|
|
|
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
namespace {
|
|
|
|
|
2014-07-10 17:41:30 +02:00
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
|
|
|
void CEF_CALLBACK print_dialog_callback_cont(
|
|
|
|
struct _cef_print_dialog_callback_t* self,
|
|
|
|
struct _cef_print_settings_t* settings) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// Verify param: settings; type: refptr_same
|
|
|
|
DCHECK(settings);
|
|
|
|
if (!settings)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefPrintDialogCallbackCppToC::Get(self)->Continue(
|
|
|
|
CefPrintSettingsCppToC::Unwrap(settings));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CEF_CALLBACK print_dialog_callback_cancel(
|
|
|
|
struct _cef_print_dialog_callback_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefPrintDialogCallbackCppToC::Get(self)->Cancel();
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
} // namespace
|
|
|
|
|
2014-07-10 17:41:30 +02:00
|
|
|
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
CefPrintDialogCallbackCppToC::CefPrintDialogCallbackCppToC() {
|
|
|
|
GetStruct()->cont = print_dialog_callback_cont;
|
|
|
|
GetStruct()->cancel = print_dialog_callback_cancel;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> CefRefPtr<CefPrintDialogCallback> CefCppToC<CefPrintDialogCallbackCppToC,
|
|
|
|
CefPrintDialogCallback, cef_print_dialog_callback_t>::UnwrapDerived(
|
|
|
|
CefWrapperType type, cef_print_dialog_callback_t* s) {
|
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
2014-07-10 17:41:30 +02:00
|
|
|
}
|
|
|
|
|
2016-09-01 13:24:30 +02:00
|
|
|
#if DCHECK_IS_ON()
|
2014-07-15 00:18:51 +02:00
|
|
|
template<> base::AtomicRefCount CefCppToC<CefPrintDialogCallbackCppToC,
|
|
|
|
CefPrintDialogCallback, cef_print_dialog_callback_t>::DebugObjCt = 0;
|
2014-07-10 17:41:30 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
template<> CefWrapperType CefCppToC<CefPrintDialogCallbackCppToC,
|
|
|
|
CefPrintDialogCallback, cef_print_dialog_callback_t>::kWrapperType =
|
|
|
|
WT_PRINT_DIALOG_CALLBACK;
|