Replace NOTREACHED() with DCHECK(false) in generated files (see #3500)

Restores the old behavior of assertion in Debug build only.
This commit is contained in:
Marshall Greenblatt 2023-05-08 18:15:02 +03:00
parent dc9e64308a
commit c18545a7f5
329 changed files with 694 additions and 694 deletions

View File

@ -33,7 +33,7 @@
// by hand. See the translator.README.txt file in the tools directory for
// more information.
//
// $hash=b564dfe24017a0805e393854d12791a71c46c454$
// $hash=9330c709713a10c1e6b55278428e65c07f4c9dfb$
//
#ifndef CEF_INCLUDE_CAPI_CEF_ORIGIN_WHITELIST_CAPI_H_

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=1ed29ea773cbebaa14bbd019d7902d98e336e964$
// $hash=3ad767f0b424a886e1783b416f532fbaf6b8cbbe$
//
#include "libcef_dll/cpptoc/accessibility_handler_cpptoc.h"
@ -88,7 +88,7 @@ CefRefPtr<CefAccessibilityHandler> CefCppToCRefCounted<
cef_accessibility_handler_t>::UnwrapDerived(CefWrapperType type,
cef_accessibility_handler_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=f90f2c0c5749139bef7c914fbb4f17cfe585e4e8$
// $hash=3b8d5f1990e9638e0baf2c3351c779f53c8b868a$
//
#include "libcef_dll/cpptoc/app_cpptoc.h"
@ -141,7 +141,7 @@ CefRefPtr<CefApp>
CefCppToCRefCounted<CefAppCppToC, CefApp, cef_app_t>::UnwrapDerived(
CefWrapperType type,
cef_app_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=0e814467a4d428a493930a3e72123dfd6721786e$
// $hash=5f113123b4a9cd31cb451c9b9e60d5e04c38a6b7$
//
#include "libcef_dll/cpptoc/audio_handler_cpptoc.h"
@ -195,7 +195,7 @@ CefRefPtr<CefAudioHandler> CefCppToCRefCounted<
CefAudioHandler,
cef_audio_handler_t>::UnwrapDerived(CefWrapperType type,
cef_audio_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=0a14f97c38bffa0ead433d74df13b04028c44a21$
// $hash=708e231fbc5c80191b2a9ba3d6295a6b5ecf925e$
//
#include "libcef_dll/cpptoc/auth_callback_cpptoc.h"
@ -72,7 +72,7 @@ CefRefPtr<CefAuthCallback> CefCppToCRefCounted<
CefAuthCallback,
cef_auth_callback_t>::UnwrapDerived(CefWrapperType type,
cef_auth_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=a4ba36a9532aa6e1a10f7e43e9ba26ab3e8faea0$
// $hash=fbd5a0f83b2df711f30cd7694877708c5a3b2d50$
//
#include "libcef_dll/cpptoc/before_download_callback_cpptoc.h"
@ -58,7 +58,7 @@ CefCppToCRefCounted<CefBeforeDownloadCallbackCppToC,
CefBeforeDownloadCallback,
cef_before_download_callback_t>::
UnwrapDerived(CefWrapperType type, cef_before_download_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ae640fec7d7fd1ba5c4b373b0a4f5036f90ab744$
// $hash=905b24443e08e2d3e2464d5f4138e97904be3e9e$
//
#include "libcef_dll/cpptoc/binary_value_cpptoc.h"
@ -207,7 +207,7 @@ template <>
CefRefPtr<CefBinaryValue>
CefCppToCRefCounted<CefBinaryValueCppToC, CefBinaryValue, cef_binary_value_t>::
UnwrapDerived(CefWrapperType type, cef_binary_value_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=60cc6a84bbd0c6822e9722687de05d265a3d8a1b$
// $hash=5cfbd6a3ef80fe1e42a841e3730d46f4ad3b4648$
//
#include "libcef_dll/cpptoc/browser_cpptoc.h"
@ -452,7 +452,7 @@ CefRefPtr<CefBrowser>
CefCppToCRefCounted<CefBrowserCppToC, CefBrowser, cef_browser_t>::UnwrapDerived(
CefWrapperType type,
cef_browser_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c4f784a8632ae70a588619db29e826fac26531e1$
// $hash=2b2caf2af2d24ffbf9cc8d33946ce019b5bf98c9$
//
#include "libcef_dll/cpptoc/browser_host_cpptoc.h"
@ -49,7 +49,7 @@ CEF_EXPORT int cef_browser_host_create_browser(
return 0;
}
if (!template_util::has_valid_size(windowInfo)) {
NOTREACHED() << "invalid windowInfo->[base.]size";
DCHECK(false) << "invalid windowInfo->[base.]size";
return 0;
}
// Verify param: settings; type: struct_byref_const
@ -58,7 +58,7 @@ CEF_EXPORT int cef_browser_host_create_browser(
return 0;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return 0;
}
// Unverified params: client, url, extra_info, request_context
@ -101,7 +101,7 @@ CEF_EXPORT cef_browser_t* cef_browser_host_create_browser_sync(
return NULL;
}
if (!template_util::has_valid_size(windowInfo)) {
NOTREACHED() << "invalid windowInfo->[base.]size";
DCHECK(false) << "invalid windowInfo->[base.]size";
return NULL;
}
// Verify param: settings; type: struct_byref_const
@ -110,7 +110,7 @@ CEF_EXPORT cef_browser_t* cef_browser_host_create_browser_sync(
return NULL;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return NULL;
}
// Unverified params: client, url, extra_info, request_context
@ -454,7 +454,7 @@ browser_host_print_to_pdf(struct _cef_browser_host_t* self,
return;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return;
}
// Unverified params: callback
@ -1470,7 +1470,7 @@ template <>
CefRefPtr<CefBrowserHost>
CefCppToCRefCounted<CefBrowserHostCppToC, CefBrowserHost, cef_browser_host_t>::
UnwrapDerived(CefWrapperType type, cef_browser_host_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=a5446c4b823971a827d933afb128f94dddacd970$
// $hash=88060c7df7f0b894e99633a60ad83c1da552ff98$
//
#include "libcef_dll/cpptoc/browser_process_handler_cpptoc.h"
@ -138,7 +138,7 @@ CefRefPtr<CefBrowserProcessHandler> CefCppToCRefCounted<
cef_browser_process_handler_t>::UnwrapDerived(CefWrapperType type,
cef_browser_process_handler_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5cfe318d106b21ec761956734b0868ccb083620a$
// $hash=9040a3e4e5208ec11e2b29195a0bfa1c3f5ecffa$
//
#include "libcef_dll/cpptoc/callback_cpptoc.h"
@ -66,7 +66,7 @@ template <>
CefRefPtr<CefCallback>
CefCppToCRefCounted<CefCallbackCppToC, CefCallback, cef_callback_t>::
UnwrapDerived(CefWrapperType type, cef_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=8eec741d5a0ac7aec671b0e1f3a6dc502f94fa44$
// $hash=f6d88f6c8228166318cc64924f6f64036b2eb44f$
//
#include "libcef_dll/cpptoc/client_cpptoc.h"
@ -417,7 +417,7 @@ CefRefPtr<CefClient>
CefCppToCRefCounted<CefClientCppToC, CefClient, cef_client_t>::UnwrapDerived(
CefWrapperType type,
cef_client_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=7b58140cd5e363a79adf4e420ceae009a7d10811$
// $hash=04f92bf7dfa4cfeec409e2418f69e63beff276ff$
//
#include "libcef_dll/cpptoc/command_handler_cpptoc.h"
@ -169,7 +169,7 @@ CefRefPtr<CefCommandHandler> CefCppToCRefCounted<
CefCommandHandler,
cef_command_handler_t>::UnwrapDerived(CefWrapperType type,
cef_command_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=3e70ff63428c3bce590fe137945a2085b432e9ad$
// $hash=0feacec72c147c19404395cb872cf47f02a4d092$
//
#include "libcef_dll/cpptoc/command_line_cpptoc.h"
@ -454,7 +454,7 @@ template <>
CefRefPtr<CefCommandLine>
CefCppToCRefCounted<CefCommandLineCppToC, CefCommandLine, cef_command_line_t>::
UnwrapDerived(CefWrapperType type, cef_command_line_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=71f2ac1fe5be9a4783d35211352a92b19f1a84c0$
// $hash=d1faca27c390ce09058aebddcf7e0a55bdbea45c$
//
#include "libcef_dll/cpptoc/completion_callback_cpptoc.h"
@ -54,7 +54,7 @@ CefRefPtr<CefCompletionCallback> CefCppToCRefCounted<
CefCompletionCallback,
cef_completion_callback_t>::UnwrapDerived(CefWrapperType type,
cef_completion_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=6b90c347c6cc6cfbd8aa5e92eebc19929bd8c2c2$
// $hash=acd29552be49802a4b18bbce49109ac8df466e88$
//
#include "libcef_dll/cpptoc/context_menu_handler_cpptoc.h"
@ -335,7 +335,7 @@ CefRefPtr<CefContextMenuHandler> CefCppToCRefCounted<
CefContextMenuHandler,
cef_context_menu_handler_t>::UnwrapDerived(CefWrapperType type,
cef_context_menu_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c543b9784333ad4f48c459585d03b65241884d45$
// $hash=dbedbe557d28ffb247be6e185f838a9cbc999eb8$
//
#include "libcef_dll/cpptoc/context_menu_params_cpptoc.h"
@ -447,7 +447,7 @@ CefRefPtr<CefContextMenuParams> CefCppToCRefCounted<
CefContextMenuParams,
cef_context_menu_params_t>::UnwrapDerived(CefWrapperType type,
cef_context_menu_params_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=f175b71f11857a4362fcf79178ea3ab531b15891$
// $hash=d7bbbf41f806f415ac983a9a9f9475ab7783cb10$
//
#include "libcef_dll/cpptoc/cookie_access_filter_cpptoc.h"
@ -46,7 +46,7 @@ cookie_access_filter_can_send_cookie(struct _cef_cookie_access_filter_t* self,
return 0;
}
if (!template_util::has_valid_size(cookie)) {
NOTREACHED() << "invalid cookie->[base.]size";
DCHECK(false) << "invalid cookie->[base.]size";
return 0;
}
// Unverified params: browser, frame
@ -95,7 +95,7 @@ cookie_access_filter_can_save_cookie(struct _cef_cookie_access_filter_t* self,
return 0;
}
if (!template_util::has_valid_size(cookie)) {
NOTREACHED() << "invalid cookie->[base.]size";
DCHECK(false) << "invalid cookie->[base.]size";
return 0;
}
// Unverified params: browser, frame
@ -135,7 +135,7 @@ CefRefPtr<CefCookieAccessFilter> CefCppToCRefCounted<
CefCookieAccessFilter,
cef_cookie_access_filter_t>::UnwrapDerived(CefWrapperType type,
cef_cookie_access_filter_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=8ed89e1ba19cde7c43e1c9e8d30354cfc356a1aa$
// $hash=fc593830dcad16182301bd0033d3932e06820e1b$
//
#include "libcef_dll/cpptoc/cookie_manager_cpptoc.h"
@ -115,7 +115,7 @@ cookie_manager_set_cookie(struct _cef_cookie_manager_t* self,
return 0;
}
if (!template_util::has_valid_size(cookie)) {
NOTREACHED() << "invalid cookie->[base.]size";
DCHECK(false) << "invalid cookie->[base.]size";
return 0;
}
// Unverified params: callback
@ -197,7 +197,7 @@ CefRefPtr<CefCookieManager> CefCppToCRefCounted<
CefCookieManager,
cef_cookie_manager_t>::UnwrapDerived(CefWrapperType type,
cef_cookie_manager_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=6706f5bf43d926b749840fb27aa7931111f1a638$
// $hash=ccecac02125e1608fe96c9646b6d9529434396e9$
//
#include "libcef_dll/cpptoc/cookie_visitor_cpptoc.h"
@ -39,7 +39,7 @@ int CEF_CALLBACK cookie_visitor_visit(struct _cef_cookie_visitor_t* self,
return 0;
}
if (!template_util::has_valid_size(cookie)) {
NOTREACHED() << "invalid cookie->[base.]size";
DCHECK(false) << "invalid cookie->[base.]size";
return 0;
}
// Verify param: deleteCookie; type: bool_byref
@ -89,7 +89,7 @@ CefRefPtr<CefCookieVisitor> CefCppToCRefCounted<
CefCookieVisitor,
cef_cookie_visitor_t>::UnwrapDerived(CefWrapperType type,
cef_cookie_visitor_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=b464cf54dd6dbbe3b7f45adaf8defd0b0015c9c3$
// $hash=72ebc189ce2a4bcfc796b818409d3b742651fda9$
//
#include "libcef_dll/cpptoc/delete_cookies_callback_cpptoc.h"
@ -56,7 +56,7 @@ CefRefPtr<CefDeleteCookiesCallback> CefCppToCRefCounted<
cef_delete_cookies_callback_t>::UnwrapDerived(CefWrapperType type,
cef_delete_cookies_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=78a2561a28bab409e06b44eaff38cac7e156bdf4$
// $hash=d32b3a49e312971ee0c825fe765c584c033d65e9$
//
#include "libcef_dll/cpptoc/dev_tools_message_observer_cpptoc.h"
@ -184,7 +184,7 @@ CefCppToCRefCounted<CefDevToolsMessageObserverCppToC,
CefDevToolsMessageObserver,
cef_dev_tools_message_observer_t>::
UnwrapDerived(CefWrapperType type, cef_dev_tools_message_observer_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=a71a7566407304bb219d211d4faf5c95c979b052$
// $hash=675f5f8b6e0738bb12326d53e3e8bfbb3e645f9b$
//
#include "libcef_dll/cpptoc/dialog_handler_cpptoc.h"
@ -84,7 +84,7 @@ CefRefPtr<CefDialogHandler> CefCppToCRefCounted<
CefDialogHandler,
cef_dialog_handler_t>::UnwrapDerived(CefWrapperType type,
cef_dialog_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=3e9334efe52aaa876470421341bbd8ca2936f19e$
// $hash=ed7d4723843c212ea634d3d9fe3121591de1c71d$
//
#include "libcef_dll/cpptoc/dictionary_value_cpptoc.h"
@ -792,7 +792,7 @@ CefRefPtr<CefDictionaryValue> CefCppToCRefCounted<
CefDictionaryValue,
cef_dictionary_value_t>::UnwrapDerived(CefWrapperType type,
cef_dictionary_value_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=e898cf0b420fd86d6dd345fdae18f297da93a09b$
// $hash=c0ff4cb4baaaeb981c9c143e6379a7ae1927c51e$
//
#include "libcef_dll/cpptoc/display_handler_cpptoc.h"
@ -367,7 +367,7 @@ CefRefPtr<CefDisplayHandler> CefCppToCRefCounted<
CefDisplayHandler,
cef_display_handler_t>::UnwrapDerived(CefWrapperType type,
cef_display_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=bb85a1fcd9a95568fc9887f490e817ccb67a2971$
// $hash=c2dd1bf044dc413a46e8482869711ed60f7129c7$
//
#include "libcef_dll/cpptoc/domdocument_cpptoc.h"
@ -319,7 +319,7 @@ template <>
CefRefPtr<CefDOMDocument>
CefCppToCRefCounted<CefDOMDocumentCppToC, CefDOMDocument, cef_domdocument_t>::
UnwrapDerived(CefWrapperType type, cef_domdocument_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=92ad2a43af7fd73add03e0ed4c053d5e3d3595a7$
// $hash=a9a7b8c8b2cb46d6bd2bb9a8883909ebbde803d7$
//
#include "libcef_dll/cpptoc/domnode_cpptoc.h"
@ -575,7 +575,7 @@ CefRefPtr<CefDOMNode>
CefCppToCRefCounted<CefDOMNodeCppToC, CefDOMNode, cef_domnode_t>::UnwrapDerived(
CefWrapperType type,
cef_domnode_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=1e896513b946d3e3d3199a1fb6cccf31898d6cbc$
// $hash=fccbe16b1237f36acf744609774b304eb6de8b98$
//
#include "libcef_dll/cpptoc/domvisitor_cpptoc.h"
@ -58,7 +58,7 @@ template <>
CefRefPtr<CefDOMVisitor>
CefCppToCRefCounted<CefDOMVisitorCppToC, CefDOMVisitor, cef_domvisitor_t>::
UnwrapDerived(CefWrapperType type, cef_domvisitor_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=91026e0ecc2c0ef824ed8727e1bdbc21c17eea74$
// $hash=d388bfeaf7f74152201d083d9142659d0a799391$
//
#include "libcef_dll/cpptoc/download_handler_cpptoc.h"
@ -161,7 +161,7 @@ CefRefPtr<CefDownloadHandler> CefCppToCRefCounted<
CefDownloadHandler,
cef_download_handler_t>::UnwrapDerived(CefWrapperType type,
cef_download_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=d097e0275625031a367f9d2734f372c62ff6dfeb$
// $hash=87ae44d30e4e9b8b28d58910b995212063380ef3$
//
#include "libcef_dll/cpptoc/download_image_callback_cpptoc.h"
@ -67,7 +67,7 @@ CefRefPtr<CefDownloadImageCallback> CefCppToCRefCounted<
cef_download_image_callback_t>::UnwrapDerived(CefWrapperType type,
cef_download_image_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=8b63291230c3edaf9568ebf29171722403232b0d$
// $hash=222759f34997871512b5f89edc78d1b3a0b0cc69$
//
#include "libcef_dll/cpptoc/download_item_callback_cpptoc.h"
@ -87,7 +87,7 @@ CefRefPtr<CefDownloadItemCallback> CefCppToCRefCounted<
cef_download_item_callback_t>::UnwrapDerived(CefWrapperType type,
cef_download_item_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=45f5c5ca3629966c785faf3785144c18f7fe14f0$
// $hash=0396657d42ed5b75838d1882434adefbcd562be6$
//
#include "libcef_dll/cpptoc/download_item_cpptoc.h"
@ -396,7 +396,7 @@ CefRefPtr<CefDownloadItem> CefCppToCRefCounted<
CefDownloadItem,
cef_download_item_t>::UnwrapDerived(CefWrapperType type,
cef_download_item_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=978e101f569a95222ce4e962d681ff2b4df46955$
// $hash=dc5d0e68bdc9b8ec86dbc9b4fa0ddce6e4597006$
//
#include "libcef_dll/cpptoc/drag_data_cpptoc.h"
@ -544,7 +544,7 @@ template <>
CefRefPtr<CefDragData>
CefCppToCRefCounted<CefDragDataCppToC, CefDragData, cef_drag_data_t>::
UnwrapDerived(CefWrapperType type, cef_drag_data_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=6c1d14cb706ab18d56a265e2eaa5567a526919e9$
// $hash=eddbb7f93fd3ffa2548b4286ab8cc854366ffc94$
//
#include "libcef_dll/cpptoc/drag_handler_cpptoc.h"
@ -118,7 +118,7 @@ template <>
CefRefPtr<CefDragHandler>
CefCppToCRefCounted<CefDragHandlerCppToC, CefDragHandler, cef_drag_handler_t>::
UnwrapDerived(CefWrapperType type, cef_drag_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ebc35ae1d69fc69861f74ff1531d1c849220fed8$
// $hash=ec060a21597376bf3cb198d526c83e457869ca64$
//
#include "libcef_dll/cpptoc/end_tracing_callback_cpptoc.h"
@ -62,7 +62,7 @@ CefRefPtr<CefEndTracingCallback> CefCppToCRefCounted<
CefEndTracingCallback,
cef_end_tracing_callback_t>::UnwrapDerived(CefWrapperType type,
cef_end_tracing_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=1be4d8919dc1f776e8c5b897757ed215df15fb06$
// $hash=d2d5ac3885b178c1fbbf59de4ce71d8cbb6a495d$
//
#include "libcef_dll/cpptoc/extension_cpptoc.h"
@ -195,7 +195,7 @@ template <>
CefRefPtr<CefExtension>
CefCppToCRefCounted<CefExtensionCppToC, CefExtension, cef_extension_t>::
UnwrapDerived(CefWrapperType type, cef_extension_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=febb11e8ea976823bf839bc77bc129be40af20bb$
// $hash=268a62ebd9b7d8b14dc1510af1d395768d24e20f$
//
#include "libcef_dll/cpptoc/extension_handler_cpptoc.h"
@ -119,7 +119,7 @@ int CEF_CALLBACK extension_handler_on_before_background_browser(
return 0;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return 0;
}
@ -205,7 +205,7 @@ extension_handler_on_before_browser(struct _cef_extension_handler_t* self,
return 0;
}
if (!template_util::has_valid_size(windowInfo)) {
NOTREACHED() << "invalid windowInfo->[base.]size";
DCHECK(false) << "invalid windowInfo->[base.]size";
return 0;
}
// Verify param: client; type: refptr_same_byref
@ -219,7 +219,7 @@ extension_handler_on_before_browser(struct _cef_extension_handler_t* self,
return 0;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return 0;
}
@ -416,7 +416,7 @@ CefRefPtr<CefExtensionHandler> CefCppToCRefCounted<
CefExtensionHandler,
cef_extension_handler_t>::UnwrapDerived(CefWrapperType type,
cef_extension_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=a646b20f2a1836fded44c08db264012b6fa2bfb7$
// $hash=e203837c6db2beb403d762b9edef23817da8eefc$
//
#include "libcef_dll/cpptoc/file_dialog_callback_cpptoc.h"
@ -77,7 +77,7 @@ CefRefPtr<CefFileDialogCallback> CefCppToCRefCounted<
CefFileDialogCallback,
cef_file_dialog_callback_t>::UnwrapDerived(CefWrapperType type,
cef_file_dialog_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ed6fc947aa34621a06ac238692de05015cb4f965$
// $hash=2df390a069798f60909a11621b3984e7a02cce40$
//
#include "libcef_dll/cpptoc/find_handler_cpptoc.h"
@ -73,7 +73,7 @@ template <>
CefRefPtr<CefFindHandler>
CefCppToCRefCounted<CefFindHandlerCppToC, CefFindHandler, cef_find_handler_t>::
UnwrapDerived(CefWrapperType type, cef_find_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=434fcb10c5051958eb269c7c2d5bd5eb0d558a2b$
// $hash=0c39dbbfcbc1d5722ea173a74d287e752f7acfc8$
//
#include "libcef_dll/cpptoc/focus_handler_cpptoc.h"
@ -109,7 +109,7 @@ CefRefPtr<CefFocusHandler> CefCppToCRefCounted<
CefFocusHandler,
cef_focus_handler_t>::UnwrapDerived(CefWrapperType type,
cef_focus_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=00edde10c338f3a382c715675f086de7753f2267$
// $hash=574bc1dbdf077ee2a6efd015e642e535be21674c$
//
#include "libcef_dll/cpptoc/frame_cpptoc.h"
@ -516,7 +516,7 @@ CefRefPtr<CefFrame>
CefCppToCRefCounted<CefFrameCppToC, CefFrame, cef_frame_t>::UnwrapDerived(
CefWrapperType type,
cef_frame_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=42bab23e4d8596214bbc40591bc50c784eecbf4d$
// $hash=73bfc92f74c8cd32ae894b99710c1de5bd5099a0$
//
#include "libcef_dll/cpptoc/frame_handler_cpptoc.h"
@ -156,7 +156,7 @@ CefRefPtr<CefFrameHandler> CefCppToCRefCounted<
CefFrameHandler,
cef_frame_handler_t>::UnwrapDerived(CefWrapperType type,
cef_frame_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=632d5681b71f4729ae9b56380eab24dfc49eda3a$
// $hash=961058ad701237a60c8ccbe6ce98c3654c1ae51e$
//
#include "libcef_dll/cpptoc/get_extension_resource_callback_cpptoc.h"
@ -76,7 +76,7 @@ CefCppToCRefCounted<CefGetExtensionResourceCallbackCppToC,
cef_get_extension_resource_callback_t>::
UnwrapDerived(CefWrapperType type,
cef_get_extension_resource_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=b10ecc805dee1dd8d653276cc2633a5e439b2fa8$
// $hash=beb7882398ddea540b847e5c9fb44ed19f91f125$
//
#include "libcef_dll/cpptoc/image_cpptoc.h"
@ -459,7 +459,7 @@ CefRefPtr<CefImage>
CefCppToCRefCounted<CefImageCppToC, CefImage, cef_image_t>::UnwrapDerived(
CefWrapperType type,
cef_image_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=40725194bb474305e418e57cf1a7bfc4a3b6af1d$
// $hash=893e80b636f7ecd2b0e0fae18d1a0e1e568cd3ac$
//
#include "libcef_dll/cpptoc/jsdialog_callback_cpptoc.h"
@ -57,7 +57,7 @@ CefRefPtr<CefJSDialogCallback> CefCppToCRefCounted<
CefJSDialogCallback,
cef_jsdialog_callback_t>::UnwrapDerived(CefWrapperType type,
cef_jsdialog_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=351f3f71bc8fcee33ee063c17f34f7a9e7a99053$
// $hash=0e5888697a0b34492333d0e07af507ebedee4b3b$
//
#include "libcef_dll/cpptoc/jsdialog_handler_cpptoc.h"
@ -177,7 +177,7 @@ CefRefPtr<CefJSDialogHandler> CefCppToCRefCounted<
CefJSDialogHandler,
cef_jsdialog_handler_t>::UnwrapDerived(CefWrapperType type,
cef_jsdialog_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=d7c3e9ff25364593a84be3b1cf30ed09897ecbcb$
// $hash=f663466a6f1faeac7a351bb5af13cb40224b3dc6$
//
#include "libcef_dll/cpptoc/keyboard_handler_cpptoc.h"
@ -126,7 +126,7 @@ CefRefPtr<CefKeyboardHandler> CefCppToCRefCounted<
CefKeyboardHandler,
cef_keyboard_handler_t>::UnwrapDerived(CefWrapperType type,
cef_keyboard_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c291a5ca7c2c70c74ad26a20cafe0dffd07b5a73$
// $hash=e96fe0660b55afa20c3bb5fdebc85635ccc53d09$
//
#include "libcef_dll/cpptoc/life_span_handler_cpptoc.h"
@ -67,7 +67,7 @@ int CEF_CALLBACK life_span_handler_on_before_popup(
return 0;
}
if (!template_util::has_valid_size(windowInfo)) {
NOTREACHED() << "invalid windowInfo->[base.]size";
DCHECK(false) << "invalid windowInfo->[base.]size";
return 0;
}
// Verify param: client; type: refptr_same_byref
@ -81,7 +81,7 @@ int CEF_CALLBACK life_span_handler_on_before_popup(
return 0;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return 0;
}
// Verify param: extra_info; type: refptr_diff_byref
@ -261,7 +261,7 @@ CefRefPtr<CefLifeSpanHandler> CefCppToCRefCounted<
CefLifeSpanHandler,
cef_life_span_handler_t>::UnwrapDerived(CefWrapperType type,
cef_life_span_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=92a7ef208f4d8ca0e0591cfbeea22ef60a0c031d$
// $hash=1431751cc07f3678e8e893c638391c9701a9e4fb$
//
#include "libcef_dll/cpptoc/list_value_cpptoc.h"
@ -630,7 +630,7 @@ template <>
CefRefPtr<CefListValue>
CefCppToCRefCounted<CefListValueCppToC, CefListValue, cef_list_value_t>::
UnwrapDerived(CefWrapperType type, cef_list_value_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=afd356d9f7ef20662f649b44d1349783b02b2da1$
// $hash=f43c1cfc04bdda9c887a0f01a97d23b159e47b04$
//
#include "libcef_dll/cpptoc/load_handler_cpptoc.h"
@ -164,7 +164,7 @@ template <>
CefRefPtr<CefLoadHandler>
CefCppToCRefCounted<CefLoadHandlerCppToC, CefLoadHandler, cef_load_handler_t>::
UnwrapDerived(CefWrapperType type, cef_load_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=a6f40e6aedccd7784cad96c4e8097dae6a1add6b$
// $hash=80cfd5e986d8a5f4b71c3058806cf2ee66100f6e$
//
#include "libcef_dll/cpptoc/media_access_callback_cpptoc.h"
@ -72,7 +72,7 @@ CefRefPtr<CefMediaAccessCallback> CefCppToCRefCounted<
cef_media_access_callback_t>::UnwrapDerived(CefWrapperType type,
cef_media_access_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=77226fbe14eaa99f4adbf6573d6ee2a8687b936d$
// $hash=22f71b1cb703d48b29d6e4eefb294fd713b5bf0e$
//
#include "libcef_dll/cpptoc/media_observer_cpptoc.h"
@ -159,7 +159,7 @@ CefRefPtr<CefMediaObserver> CefCppToCRefCounted<
CefMediaObserver,
cef_media_observer_t>::UnwrapDerived(CefWrapperType type,
cef_media_observer_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=117fcfcb178f8a8a08272186c250c4042fcd74c0$
// $hash=3273e6b77a9d01d328b538480cfd2fb0ed45201c$
//
#include "libcef_dll/cpptoc/media_route_cpptoc.h"
@ -134,7 +134,7 @@ template <>
CefRefPtr<CefMediaRoute>
CefCppToCRefCounted<CefMediaRouteCppToC, CefMediaRoute, cef_media_route_t>::
UnwrapDerived(CefWrapperType type, cef_media_route_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5e5e23e9c36b269a49017fcb412e925b2124c409$
// $hash=35856cbf3eaacfdeceed8d49fa1e6ae066d21fe7$
//
#include "libcef_dll/cpptoc/media_route_create_callback_cpptoc.h"
@ -61,7 +61,7 @@ CefCppToCRefCounted<CefMediaRouteCreateCallbackCppToC,
CefMediaRouteCreateCallback,
cef_media_route_create_callback_t>::
UnwrapDerived(CefWrapperType type, cef_media_route_create_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=d5e33d2f86d782fb59cd8d5a88596a65825e8de5$
// $hash=e98de61436e52c5be6153cc4e3644962259eddeb$
//
#include "libcef_dll/cpptoc/media_router_cpptoc.h"
@ -181,7 +181,7 @@ template <>
CefRefPtr<CefMediaRouter>
CefCppToCRefCounted<CefMediaRouterCppToC, CefMediaRouter, cef_media_router_t>::
UnwrapDerived(CefWrapperType type, cef_media_router_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=9a49bd42c37e24a9f968dc703b91ac0a0d467471$
// $hash=34cf5c3fde544a2f8a323ea3f55ed88db0010672$
//
#include "libcef_dll/cpptoc/media_sink_cpptoc.h"
@ -181,7 +181,7 @@ template <>
CefRefPtr<CefMediaSink>
CefCppToCRefCounted<CefMediaSinkCppToC, CefMediaSink, cef_media_sink_t>::
UnwrapDerived(CefWrapperType type, cef_media_sink_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=820d68c7a5b1ccc305da5f644b2875a5db6fabc9$
// $hash=9e43a07b0d4886995b29b55315fe8397641293df$
//
#include "libcef_dll/cpptoc/media_sink_device_info_callback_cpptoc.h"
@ -37,7 +37,7 @@ void CEF_CALLBACK media_sink_device_info_callback_on_media_sink_device_info(
return;
}
if (!template_util::has_valid_size(device_info)) {
NOTREACHED() << "invalid device_info->[base.]size";
DCHECK(false) << "invalid device_info->[base.]size";
return;
}
@ -74,7 +74,7 @@ CefCppToCRefCounted<CefMediaSinkDeviceInfoCallbackCppToC,
cef_media_sink_device_info_callback_t>::
UnwrapDerived(CefWrapperType type,
cef_media_sink_device_info_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=0722c0684e9a958fd4a841994f5ab0db1bc903ff$
// $hash=28f41d6cd0959174263b1cf5d1da37b4fe4c463b$
//
#include "libcef_dll/cpptoc/media_source_cpptoc.h"
@ -91,7 +91,7 @@ template <>
CefRefPtr<CefMediaSource>
CefCppToCRefCounted<CefMediaSourceCppToC, CefMediaSource, cef_media_source_t>::
UnwrapDerived(CefWrapperType type, cef_media_source_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=7b74378527d1d6e92b30248f25704ef262106e6d$
// $hash=e41fe8c89bde5a6883bb523230c3067900c85827$
//
#include "libcef_dll/cpptoc/menu_model_cpptoc.h"
@ -1378,7 +1378,7 @@ template <>
CefRefPtr<CefMenuModel>
CefCppToCRefCounted<CefMenuModelCppToC, CefMenuModel, cef_menu_model_t>::
UnwrapDerived(CefWrapperType type, cef_menu_model_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=6e9aa9c1da82a7a3b8fc6a6551bf24b9ec05f44a$
// $hash=e3f7a1bb81a732eddd8995d14490216d147f510c$
//
#include "libcef_dll/cpptoc/menu_model_delegate_cpptoc.h"
@ -227,7 +227,7 @@ CefRefPtr<CefMenuModelDelegate> CefCppToCRefCounted<
CefMenuModelDelegate,
cef_menu_model_delegate_t>::UnwrapDerived(CefWrapperType type,
cef_menu_model_delegate_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=3a9dcb524638c4d9230b4513041aa9353db54e7f$
// $hash=72992a0b2546d13e29617ad20d69c31243b68305$
//
#include "libcef_dll/cpptoc/navigation_entry_cpptoc.h"
@ -232,7 +232,7 @@ CefRefPtr<CefNavigationEntry> CefCppToCRefCounted<
CefNavigationEntry,
cef_navigation_entry_t>::UnwrapDerived(CefWrapperType type,
cef_navigation_entry_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=addccca2d817966a80bf0f33aa17b4cc2bab968c$
// $hash=f1a90fb1b3cda0cec9e9b4349c722761be164d22$
//
#include "libcef_dll/cpptoc/navigation_entry_visitor_cpptoc.h"
@ -69,7 +69,7 @@ CefCppToCRefCounted<CefNavigationEntryVisitorCppToC,
CefNavigationEntryVisitor,
cef_navigation_entry_visitor_t>::
UnwrapDerived(CefWrapperType type, cef_navigation_entry_visitor_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=1df7a3d15f0578169d5f7ae564c15b4c2b852882$
// $hash=1ed6b4ab7a3ceeab451ba1b898ed91a88f483004$
//
#include "libcef_dll/cpptoc/pdf_print_callback_cpptoc.h"
@ -62,7 +62,7 @@ CefRefPtr<CefPdfPrintCallback> CefCppToCRefCounted<
CefPdfPrintCallback,
cef_pdf_print_callback_t>::UnwrapDerived(CefWrapperType type,
cef_pdf_print_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ab9f07a4be312d0b6bc59f9ab94fdbaa34f5dc82$
// $hash=1631e01c7930f0c2c94111e8451954c844c84637$
//
#include "libcef_dll/cpptoc/permission_handler_cpptoc.h"
@ -159,7 +159,7 @@ CefRefPtr<CefPermissionHandler> CefCppToCRefCounted<
CefPermissionHandler,
cef_permission_handler_t>::UnwrapDerived(CefWrapperType type,
cef_permission_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=37ab08ce3f3226d0d38ac05bb91dbf060e43a598$
// $hash=3ff7759e8f2dac0ae01122918c5ba0556b244532$
//
#include "libcef_dll/cpptoc/permission_prompt_callback_cpptoc.h"
@ -55,7 +55,7 @@ CefCppToCRefCounted<CefPermissionPromptCallbackCppToC,
CefPermissionPromptCallback,
cef_permission_prompt_callback_t>::
UnwrapDerived(CefWrapperType type, cef_permission_prompt_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5e90cf25cb72e84e91a1f8dde1ad722592424dcb$
// $hash=1c9f3d740266fe84bfa1d6105eaffaf2866a8876$
//
#include "libcef_dll/cpptoc/post_data_cpptoc.h"
@ -196,7 +196,7 @@ template <>
CefRefPtr<CefPostData>
CefCppToCRefCounted<CefPostDataCppToC, CefPostData, cef_post_data_t>::
UnwrapDerived(CefWrapperType type, cef_post_data_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=163df09395448195c38cd73e0cdff8e0018eed7a$
// $hash=28878433f4b543be6353184d8f930099ea0c9f41$
//
#include "libcef_dll/cpptoc/post_data_element_cpptoc.h"
@ -195,7 +195,7 @@ CefRefPtr<CefPostDataElement> CefCppToCRefCounted<
CefPostDataElement,
cef_post_data_element_t>::UnwrapDerived(CefWrapperType type,
cef_post_data_element_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=03f2344ea74ba170a5756bb8636f56c32df787a1$
// $hash=ea61753d9dc6c4e0e95db78e2f0d07ab0d65c769$
//
#include "libcef_dll/cpptoc/preference_manager_cpptoc.h"
@ -182,7 +182,7 @@ CefRefPtr<CefPreferenceManager> CefCppToCRefCounted<
return CefRequestContextCppToC::Unwrap(
reinterpret_cast<cef_request_context_t*>(s));
}
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=341388d9df93e67401777e34989f0bd43f341c80$
// $hash=5b964d4de1850160f24a5cc43d4d51bc622cc546$
//
#include "libcef_dll/cpptoc/preference_registrar_cpptoc.h"
@ -65,7 +65,7 @@ CefOwnPtr<CefPreferenceRegistrar> CefCppToCScoped<CefPreferenceRegistrarCppToC,
CefPreferenceRegistrar,
cef_preference_registrar_t>::
UnwrapDerivedOwn(CefWrapperType type, cef_preference_registrar_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return CefOwnPtr<CefPreferenceRegistrar>();
}
@ -74,7 +74,7 @@ CefRawPtr<CefPreferenceRegistrar> CefCppToCScoped<CefPreferenceRegistrarCppToC,
CefPreferenceRegistrar,
cef_preference_registrar_t>::
UnwrapDerivedRaw(CefWrapperType type, cef_preference_registrar_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=2440f3cedc982eed4d2f2c9f698a15b378d23a11$
// $hash=c70076350cd4523b0506236e187e3b3320a9dc5f$
//
#include "libcef_dll/cpptoc/print_dialog_callback_cpptoc.h"
@ -79,7 +79,7 @@ CefRefPtr<CefPrintDialogCallback> CefCppToCRefCounted<
cef_print_dialog_callback_t>::UnwrapDerived(CefWrapperType type,
cef_print_dialog_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ddbbddf37b581bf4fc29bcc7ccff2e1129fb14ad$
// $hash=2249e1f0ad86dad3cfac6755c79e3a114d11f4f9$
//
#include "libcef_dll/cpptoc/print_handler_cpptoc.h"
@ -225,7 +225,7 @@ CefRefPtr<CefPrintHandler> CefCppToCRefCounted<
CefPrintHandler,
cef_print_handler_t>::UnwrapDerived(CefWrapperType type,
cef_print_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=4a96bcb2808507afe4d9e103373392e9bb936731$
// $hash=282e8760f3b06ad59158a4c07b8f44932e827b1d$
//
#include "libcef_dll/cpptoc/print_job_callback_cpptoc.h"
@ -54,7 +54,7 @@ CefRefPtr<CefPrintJobCallback> CefCppToCRefCounted<
CefPrintJobCallback,
cef_print_job_callback_t>::UnwrapDerived(CefWrapperType type,
cef_print_job_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=7de7cab1410567741db3c8b4afbb0d6fec1098eb$
// $hash=8f43b6d00d772cb989a29bba70187f9df04ab0bf$
//
#include "libcef_dll/cpptoc/print_settings_cpptoc.h"
@ -508,7 +508,7 @@ CefRefPtr<CefPrintSettings> CefCppToCRefCounted<
CefPrintSettings,
cef_print_settings_t>::UnwrapDerived(CefWrapperType type,
cef_print_settings_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=80473999475a2327eca8289bd30d970c699abb21$
// $hash=f422c73d022a8794c0cbb01f4bb3fbb2a3f7e045$
//
#include "libcef_dll/cpptoc/process_message_cpptoc.h"
@ -179,7 +179,7 @@ CefRefPtr<CefProcessMessage> CefCppToCRefCounted<
CefProcessMessage,
cef_process_message_t>::UnwrapDerived(CefWrapperType type,
cef_process_message_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=808efb0b2702ab12ea55c67846d9159a45cc0bd7$
// $hash=d9cda583bea7df6ee7b9297e4187b37b5c3cc30a$
//
#include "libcef_dll/cpptoc/read_handler_cpptoc.h"
@ -136,7 +136,7 @@ template <>
CefRefPtr<CefReadHandler>
CefCppToCRefCounted<CefReadHandlerCppToC, CefReadHandler, cef_read_handler_t>::
UnwrapDerived(CefWrapperType type, cef_read_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=9256f12f40a70c8a2e6100882473516f80c097c4$
// $hash=b8ae4bec56faeb74fd5ddad0cacb053a17babc08$
//
#include "libcef_dll/cpptoc/registration_cpptoc.h"
@ -31,7 +31,7 @@ CefCppToCRefCounted<CefRegistrationCppToC,
CefRegistration,
cef_registration_t>::UnwrapDerived(CefWrapperType type,
cef_registration_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=46ea8d3dc2d9f2c1f430eb15fecc16768e6adb6a$
// $hash=84d77427734eaa5d0200c61599089678864ea2dc$
//
#include "libcef_dll/cpptoc/render_handler_cpptoc.h"
@ -644,7 +644,7 @@ CefRefPtr<CefRenderHandler> CefCppToCRefCounted<
CefRenderHandler,
cef_render_handler_t>::UnwrapDerived(CefWrapperType type,
cef_render_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5737d6b536a99ac844904acaa8977c25476ed524$
// $hash=41a3981a7d293d6a13bba9961192d4fc7f0a49f1$
//
#include "libcef_dll/cpptoc/render_process_handler_cpptoc.h"
@ -306,7 +306,7 @@ CefRefPtr<CefRenderProcessHandler> CefCppToCRefCounted<
cef_render_process_handler_t>::UnwrapDerived(CefWrapperType type,
cef_render_process_handler_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=e710aaf020af29d178d2668e24577c371ebf6d45$
// $hash=11e75abce1b3d294f13b65739bd95fff8f790a3e$
//
#include "libcef_dll/cpptoc/request_context_cpptoc.h"
@ -49,7 +49,7 @@ CEF_EXPORT cef_request_context_t* cef_request_context_create_context(
return NULL;
}
if (!template_util::has_valid_size(settings)) {
NOTREACHED() << "invalid settings->[base.]size";
DCHECK(false) << "invalid settings->[base.]size";
return NULL;
}
// Unverified params: handler
@ -643,7 +643,7 @@ CefRefPtr<CefRequestContext> CefCppToCRefCounted<
CefRequestContext,
cef_request_context_t>::UnwrapDerived(CefWrapperType type,
cef_request_context_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ed44d7498b80c75957e24cc2baa879d9bda691f3$
// $hash=c247859a657da56e23b37918bd647b81c5ae316c$
//
#include "libcef_dll/cpptoc/request_context_handler_cpptoc.h"
@ -114,7 +114,7 @@ CefRefPtr<CefRequestContextHandler> CefCppToCRefCounted<
cef_request_context_handler_t>::UnwrapDerived(CefWrapperType type,
cef_request_context_handler_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=64b21283c46b80ddd854c073ed2bc30e65b0d543$
// $hash=4a8f5ea7a761afbc9add6949917bb51c6c66d101$
//
#include "libcef_dll/cpptoc/request_cpptoc.h"
@ -474,7 +474,7 @@ CefRefPtr<CefRequest>
CefCppToCRefCounted<CefRequestCppToC, CefRequest, cef_request_t>::UnwrapDerived(
CefWrapperType type,
cef_request_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=bb63cba306af7d795935851813985fb8467c1245$
// $hash=c487cecbbd674cf04f14e4b3e0f018145f238373$
//
#include "libcef_dll/cpptoc/request_handler_cpptoc.h"
@ -422,7 +422,7 @@ CefRefPtr<CefRequestHandler> CefCppToCRefCounted<
CefRequestHandler,
cef_request_handler_t>::UnwrapDerived(CefWrapperType type,
cef_request_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=b9b5047524de83c24a2911a83b1cb48fc472774a$
// $hash=e71369876af6d78b7f94e54b7ea5cf19c091a12a$
//
#include "libcef_dll/cpptoc/resolve_callback_cpptoc.h"
@ -63,7 +63,7 @@ CefRefPtr<CefResolveCallback> CefCppToCRefCounted<
CefResolveCallback,
cef_resolve_callback_t>::UnwrapDerived(CefWrapperType type,
cef_resolve_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=8ef82c13bcb073b2cd97ef38d79d47478d1eddec$
// $hash=fc8189d4a430b02f6de35a53188be505db59bfa4$
//
#include "libcef_dll/cpptoc/resource_bundle_cpptoc.h"
@ -108,7 +108,7 @@ CefRefPtr<CefResourceBundle> CefCppToCRefCounted<
CefResourceBundle,
cef_resource_bundle_t>::UnwrapDerived(CefWrapperType type,
cef_resource_bundle_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=9fed784c5de6718569cc5c0828a1856831148146$
// $hash=7f625b08e4c82a608dd7178b571f80fce5fe0d70$
//
#include "libcef_dll/cpptoc/resource_bundle_handler_cpptoc.h"
@ -167,7 +167,7 @@ CefRefPtr<CefResourceBundleHandler> CefCppToCRefCounted<
cef_resource_bundle_handler_t>::UnwrapDerived(CefWrapperType type,
cef_resource_bundle_handler_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5a00cba2b704ea26cf404ca0aab08be98ce08154$
// $hash=ec0ed100e05a34f1f7909e93d8f6f3e8aaadbeaf$
//
#include "libcef_dll/cpptoc/resource_handler_cpptoc.h"
@ -318,7 +318,7 @@ CefRefPtr<CefResourceHandler> CefCppToCRefCounted<
CefResourceHandler,
cef_resource_handler_t>::UnwrapDerived(CefWrapperType type,
cef_resource_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=38393598812c88b7e4a94371a374be0af454713f$
// $hash=c7fa8f548cc0e606e09fe76532b3d2bc19473b16$
//
#include "libcef_dll/cpptoc/resource_read_callback_cpptoc.h"
@ -56,7 +56,7 @@ CefRefPtr<CefResourceReadCallback> CefCppToCRefCounted<
cef_resource_read_callback_t>::UnwrapDerived(CefWrapperType type,
cef_resource_read_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=ae437028fb869b3a569bb45d150cf772a309a1f2$
// $hash=b508744274495630cce72e1febb2503552ba9379$
//
#include "libcef_dll/cpptoc/resource_request_handler_cpptoc.h"
@ -332,7 +332,7 @@ CefCppToCRefCounted<CefResourceRequestHandlerCppToC,
CefResourceRequestHandler,
cef_resource_request_handler_t>::
UnwrapDerived(CefWrapperType type, cef_resource_request_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=2a57133cdf0ebd14c4feb067f867f558b1403ae8$
// $hash=bff1a6490007bd43ac28f862bcc145e3b385b1ca$
//
#include "libcef_dll/cpptoc/resource_skip_callback_cpptoc.h"
@ -56,7 +56,7 @@ CefRefPtr<CefResourceSkipCallback> CefCppToCRefCounted<
cef_resource_skip_callback_t>::UnwrapDerived(CefWrapperType type,
cef_resource_skip_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=91a122bd04945c350a947a565acf15419e055404$
// $hash=f0c69112a4eba6862aa54a4df7fa10f7e361edf7$
//
#include "libcef_dll/cpptoc/response_cpptoc.h"
@ -347,7 +347,7 @@ template <>
CefRefPtr<CefResponse>
CefCppToCRefCounted<CefResponseCppToC, CefResponse, cef_response_t>::
UnwrapDerived(CefWrapperType type, cef_response_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=67a86aa6e1d96bc5c9960dbee2b7e6786879a161$
// $hash=403513566867d0fd85166242648f269fac987ca5$
//
#include "libcef_dll/cpptoc/response_filter_cpptoc.h"
@ -115,7 +115,7 @@ CefRefPtr<CefResponseFilter> CefCppToCRefCounted<
CefResponseFilter,
cef_response_filter_t>::UnwrapDerived(CefWrapperType type,
cef_response_filter_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=3d4a026e0e0c0f45b3bfbc6efaeeda3073b94196$
// $hash=e0ae5295de1a999b825687b01fcb494d2901dacc$
//
#include "libcef_dll/cpptoc/run_context_menu_callback_cpptoc.h"
@ -72,7 +72,7 @@ CefCppToCRefCounted<CefRunContextMenuCallbackCppToC,
CefRunContextMenuCallback,
cef_run_context_menu_callback_t>::
UnwrapDerived(CefWrapperType type, cef_run_context_menu_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=1377c3978cb878ce8fea606899c80b99f017fe48$
// $hash=e55e25cbcc3f016810209ddad7d351f021306820$
//
#include "libcef_dll/cpptoc/run_file_dialog_callback_cpptoc.h"
@ -63,7 +63,7 @@ CefCppToCRefCounted<CefRunFileDialogCallbackCppToC,
CefRunFileDialogCallback,
cef_run_file_dialog_callback_t>::
UnwrapDerived(CefWrapperType type, cef_run_file_dialog_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=eb693cdf087ac87c4fe8da576a41faa120f97cd1$
// $hash=005e5ae02a04bc6fdd626063b1f83e465e21e498$
//
#include "libcef_dll/cpptoc/run_quick_menu_callback_cpptoc.h"
@ -73,7 +73,7 @@ CefRefPtr<CefRunQuickMenuCallback> CefCppToCRefCounted<
cef_run_quick_menu_callback_t>::UnwrapDerived(CefWrapperType type,
cef_run_quick_menu_callback_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=bf6605b9c5545c7b739ee45b368b8b8d657c7961$
// $hash=6220412461641a8ca21d4b521f3eb9e7db3ccb63$
//
#include "libcef_dll/cpptoc/scheme_handler_factory_cpptoc.h"
@ -75,7 +75,7 @@ CefRefPtr<CefSchemeHandlerFactory> CefCppToCRefCounted<
cef_scheme_handler_factory_t>::UnwrapDerived(CefWrapperType type,
cef_scheme_handler_factory_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c8d002bda0c13dc943bc13dc03162e4caea2598d$
// $hash=850c94d117e9f4b80bc46f8748e0c278c8ef1dcb$
//
#include "libcef_dll/cpptoc/scheme_registrar_cpptoc.h"
@ -60,7 +60,7 @@ CefOwnPtr<CefSchemeRegistrar> CefCppToCScoped<
CefSchemeRegistrar,
cef_scheme_registrar_t>::UnwrapDerivedOwn(CefWrapperType type,
cef_scheme_registrar_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return CefOwnPtr<CefSchemeRegistrar>();
}
@ -70,7 +70,7 @@ CefRawPtr<CefSchemeRegistrar> CefCppToCScoped<
CefSchemeRegistrar,
cef_scheme_registrar_t>::UnwrapDerivedRaw(CefWrapperType type,
cef_scheme_registrar_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c865766a570b4a0d355791d595f74f24fb7741b2$
// $hash=e873562bb3cc869d61a4a234b770ecd52c190c52$
//
#include "libcef_dll/cpptoc/select_client_certificate_callback_cpptoc.h"
@ -61,7 +61,7 @@ CefCppToCRefCounted<CefSelectClientCertificateCallbackCppToC,
cef_select_client_certificate_callback_t>::
UnwrapDerived(CefWrapperType type,
cef_select_client_certificate_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=64f33249acb07a3a3b27763d339e3bd41af6bc5d$
// $hash=8c3f680313770151c050a6355b3ec042929ef4b8$
//
#include "libcef_dll/cpptoc/server_cpptoc.h"
@ -341,7 +341,7 @@ CefRefPtr<CefServer>
CefCppToCRefCounted<CefServerCppToC, CefServer, cef_server_t>::UnwrapDerived(
CefWrapperType type,
cef_server_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c97b6223ac1745adbc83abf78ccd3b7d401ccd20$
// $hash=8708ab56ea13185a17f585bb156114f7825408c1$
//
#include "libcef_dll/cpptoc/server_handler_cpptoc.h"
@ -270,7 +270,7 @@ CefRefPtr<CefServerHandler> CefCppToCRefCounted<
CefServerHandler,
cef_server_handler_t>::UnwrapDerived(CefWrapperType type,
cef_server_handler_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

View File

@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=d199f58fbd9efb01b375935d0660f8e2f74e630f$
// $hash=65a2338d30ce4e012afe4e272f3c04ca65116f94$
//
#include "libcef_dll/cpptoc/set_cookie_callback_cpptoc.h"
@ -55,7 +55,7 @@ CefRefPtr<CefSetCookieCallback> CefCppToCRefCounted<
CefSetCookieCallback,
cef_set_cookie_callback_t>::UnwrapDerived(CefWrapperType type,
cef_set_cookie_callback_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
DCHECK(false) << "Unexpected class type: " << type;
return nullptr;
}

Some files were not shown because too many files have changed in this diff Show More