2019-01-10 15:22:19 +01:00
|
|
|
// Copyright (c) 2019 The Chromium Embedded Framework Authors. All rights
|
2014-01-06 20:48:18 +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.
|
|
|
|
//
|
2019-01-23 16:42:12 +01:00
|
|
|
// $hash=534d68f913ce9f4e7ab7b8a61f0be1c5087f4ca5$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2014-01-06 20:48:18 +01:00
|
|
|
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/ctocpp/drag_handler_ctocpp.h"
|
2014-01-06 20:48:18 +01:00
|
|
|
#include "libcef_dll/cpptoc/browser_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/drag_data_cpptoc.h"
|
2019-01-23 16:42:12 +01:00
|
|
|
#include "libcef_dll/shutdown_checker.h"
|
2014-01-06 20:48:18 +01:00
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2014-01-06 20:48:18 +01:00
|
|
|
bool CefDragHandlerCToCpp::OnDragEnter(CefRefPtr<CefBrowser> browser,
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefDragData> dragData,
|
|
|
|
DragOperationsMask mask) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_drag_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_drag_enter))
|
2014-01-06 20:48:18 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser.get());
|
|
|
|
if (!browser.get())
|
|
|
|
return false;
|
|
|
|
// Verify param: dragData; type: refptr_diff
|
|
|
|
DCHECK(dragData.get());
|
|
|
|
if (!dragData.get())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->on_drag_enter(_struct, CefBrowserCppToC::Wrap(browser),
|
|
|
|
CefDragDataCppToC::Wrap(dragData), mask);
|
2014-01-06 20:48:18 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2014-01-06 20:48:18 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2015-04-24 15:48:32 +02:00
|
|
|
void CefDragHandlerCToCpp::OnDraggableRegionsChanged(
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
const std::vector<CefDraggableRegion>& regions) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2015-04-24 15:48:32 +02:00
|
|
|
cef_drag_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_draggable_regions_changed))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser.get());
|
|
|
|
if (!browser.get())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Translate param: regions; type: simple_vec_byref_const
|
|
|
|
const size_t regionsCount = regions.size();
|
|
|
|
cef_draggable_region_t* regionsList = NULL;
|
|
|
|
if (regionsCount > 0) {
|
|
|
|
regionsList = new cef_draggable_region_t[regionsCount];
|
|
|
|
DCHECK(regionsList);
|
|
|
|
if (regionsList) {
|
|
|
|
for (size_t i = 0; i < regionsCount; ++i) {
|
|
|
|
regionsList[i] = regions[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_draggable_regions_changed(
|
|
|
|
_struct, CefBrowserCppToC::Wrap(browser), regionsCount, regionsList);
|
2015-04-24 15:48:32 +02:00
|
|
|
|
|
|
|
// Restore param:regions; type: simple_vec_byref_const
|
|
|
|
if (regionsList)
|
2017-05-17 11:29:28 +02:00
|
|
|
delete[] regionsList;
|
2015-04-24 15:48:32 +02:00
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefDragHandlerCToCpp::CefDragHandlerCToCpp() {}
|
2015-04-26 20:40:01 +02:00
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefDragHandlerCToCpp::~CefDragHandlerCToCpp() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
cef_drag_handler_t*
|
|
|
|
CefCToCppRefCounted<CefDragHandlerCToCpp, CefDragHandler, cef_drag_handler_t>::
|
|
|
|
UnwrapDerived(CefWrapperType type, CefDragHandler* c) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-09-01 13:24:30 +02:00
|
|
|
#if DCHECK_IS_ON()
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
base::AtomicRefCount CefCToCppRefCounted<CefDragHandlerCToCpp,
|
|
|
|
CefDragHandler,
|
2017-07-27 01:19:27 +02:00
|
|
|
cef_drag_handler_t>::DebugObjCt
|
|
|
|
ATOMIC_DECLARATION;
|
2014-01-06 20:48:18 +01:00
|
|
|
#endif
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCToCppRefCounted<CefDragHandlerCToCpp,
|
|
|
|
CefDragHandler,
|
|
|
|
cef_drag_handler_t>::kWrapperType =
|
|
|
|
WT_DRAG_HANDLER;
|