mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Apply clang-format to all C, C++ and ObjC files (issue #2171)
This commit is contained in:
@ -9,22 +9,27 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=2905826a83c8afbda57e2a6868bb447f8f22b58b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/dialog_handler_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/file_dialog_callback_ctocpp.h"
|
||||
#include "libcef_dll/transfer_util.h"
|
||||
|
||||
|
||||
namespace {
|
||||
|
||||
// MEMBER FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
int CEF_CALLBACK dialog_handler_on_file_dialog(
|
||||
struct _cef_dialog_handler_t* self, cef_browser_t* browser,
|
||||
cef_file_dialog_mode_t mode, const cef_string_t* title,
|
||||
const cef_string_t* default_file_path, cef_string_list_t accept_filters,
|
||||
int selected_accept_filter, cef_file_dialog_callback_t* callback) {
|
||||
int CEF_CALLBACK
|
||||
dialog_handler_on_file_dialog(struct _cef_dialog_handler_t* self,
|
||||
cef_browser_t* browser,
|
||||
cef_file_dialog_mode_t mode,
|
||||
const cef_string_t* title,
|
||||
const cef_string_t* default_file_path,
|
||||
cef_string_list_t accept_filters,
|
||||
int selected_accept_filter,
|
||||
cef_file_dialog_callback_t* callback) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@ -50,12 +55,8 @@ int CEF_CALLBACK dialog_handler_on_file_dialog(
|
||||
|
||||
// Execute
|
||||
bool _retval = CefDialogHandlerCppToC::Get(self)->OnFileDialog(
|
||||
CefBrowserCToCpp::Wrap(browser),
|
||||
mode,
|
||||
CefString(title),
|
||||
CefString(default_file_path),
|
||||
accept_filtersList,
|
||||
selected_accept_filter,
|
||||
CefBrowserCToCpp::Wrap(browser), mode, CefString(title),
|
||||
CefString(default_file_path), accept_filtersList, selected_accept_filter,
|
||||
CefFileDialogCallbackCToCpp::Wrap(callback));
|
||||
|
||||
// Return type: bool
|
||||
@ -64,24 +65,31 @@ int CEF_CALLBACK dialog_handler_on_file_dialog(
|
||||
|
||||
} // namespace
|
||||
|
||||
|
||||
// CONSTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefDialogHandlerCppToC::CefDialogHandlerCppToC() {
|
||||
GetStruct()->on_file_dialog = dialog_handler_on_file_dialog;
|
||||
}
|
||||
|
||||
template<> CefRefPtr<CefDialogHandler> CefCppToCRefCounted<CefDialogHandlerCppToC,
|
||||
CefDialogHandler, cef_dialog_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
cef_dialog_handler_t* s) {
|
||||
template <>
|
||||
CefRefPtr<CefDialogHandler> CefCppToCRefCounted<
|
||||
CefDialogHandlerCppToC,
|
||||
CefDialogHandler,
|
||||
cef_dialog_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
cef_dialog_handler_t* s) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#if DCHECK_IS_ON()
|
||||
template<> base::AtomicRefCount CefCppToCRefCounted<CefDialogHandlerCppToC,
|
||||
CefDialogHandler, cef_dialog_handler_t>::DebugObjCt = 0;
|
||||
template <>
|
||||
base::AtomicRefCount CefCppToCRefCounted<CefDialogHandlerCppToC,
|
||||
CefDialogHandler,
|
||||
cef_dialog_handler_t>::DebugObjCt = 0;
|
||||
#endif
|
||||
|
||||
template<> CefWrapperType CefCppToCRefCounted<CefDialogHandlerCppToC,
|
||||
CefDialogHandler, cef_dialog_handler_t>::kWrapperType = WT_DIALOG_HANDLER;
|
||||
template <>
|
||||
CefWrapperType CefCppToCRefCounted<CefDialogHandlerCppToC,
|
||||
CefDialogHandler,
|
||||
cef_dialog_handler_t>::kWrapperType =
|
||||
WT_DIALOG_HANDLER;
|
||||
|
Reference in New Issue
Block a user