mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
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:
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=236b528eccad839c6afca3c752c83868fe823fa8$
|
||||
// $hash=1833e824ccf9b8b5aa8a22ab4f0e731b3296603c$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/accessibility_handler_ctocpp.h"
|
||||
@@ -79,7 +79,7 @@ cef_accessibility_handler_t* CefCToCppRefCounted<
|
||||
CefAccessibilityHandler,
|
||||
cef_accessibility_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefAccessibilityHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=db849902d1f4a2d4e41103d76fe5985a078a413a$
|
||||
// $hash=fb2f03e369354152db16f5a6b6c6b93e87c42fa5$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/app_ctocpp.h"
|
||||
@@ -132,7 +132,7 @@ template <>
|
||||
cef_app_t* CefCToCppRefCounted<CefAppCToCpp, CefApp, cef_app_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefApp* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=88d580fa35d32ce62d7a20a4febc193ffdaa45ee$
|
||||
// $hash=add4d2a56f890fe5c868ebd23a03a4da4d8d6727$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/audio_handler_ctocpp.h"
|
||||
@@ -165,7 +165,7 @@ CefCToCppRefCounted<CefAudioHandlerCToCpp,
|
||||
CefAudioHandler,
|
||||
cef_audio_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefAudioHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=d43fde9a3c77573a0939afc7c7d2016c5b291a40$
|
||||
// $hash=b2c9b6c79bcd7f510d9cb521a15f761eda23e7ef$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/auth_callback_ctocpp.h"
|
||||
@@ -65,7 +65,7 @@ CefCToCppRefCounted<CefAuthCallbackCToCpp,
|
||||
CefAuthCallback,
|
||||
cef_auth_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefAuthCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=720f0530ee0dff9014bc77e1475ba41de29fb890$
|
||||
// $hash=5fee76af45a3305b58bd6a58455fb3e834368077$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/before_download_callback_ctocpp.h"
|
||||
@@ -52,7 +52,7 @@ cef_before_download_callback_t* CefCToCppRefCounted<
|
||||
cef_before_download_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefBeforeDownloadCallback*
|
||||
c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b1bfb92cdbb050816ed3387ad596fa8af7327479$
|
||||
// $hash=caaf5dfe8d56c784e213b1590c21194f08084b70$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/binary_value_ctocpp.h"
|
||||
@@ -196,7 +196,7 @@ template <>
|
||||
cef_binary_value_t*
|
||||
CefCToCppRefCounted<CefBinaryValueCToCpp, CefBinaryValue, cef_binary_value_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefBinaryValue* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=d81e2665aee6c13c537a443480bfff9b8bc6bd47$
|
||||
// $hash=459764183df818659c82a91a5bb1170ab02561ae$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
||||
@@ -426,7 +426,7 @@ cef_browser_t*
|
||||
CefCToCppRefCounted<CefBrowserCToCpp, CefBrowser, cef_browser_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefBrowser* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=aad33efa7cb9fe4904f1fcafecd960e2b3c86ab1$
|
||||
// $hash=661cc019b1ef90360e09491c9ccaf1a7b69d6f7e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/browser_host_ctocpp.h"
|
||||
@@ -1193,7 +1193,7 @@ template <>
|
||||
cef_browser_host_t*
|
||||
CefCToCppRefCounted<CefBrowserHostCToCpp, CefBrowserHost, cef_browser_host_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefBrowserHost* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=08bc3d3dc2179824d250c38c1d1165c642110e87$
|
||||
// $hash=db95f4b4337e9eec478f506df6f322247f8b24f6$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/browser_process_handler_ctocpp.h"
|
||||
@@ -122,7 +122,7 @@ cef_browser_process_handler_t* CefCToCppRefCounted<
|
||||
CefBrowserProcessHandler,
|
||||
cef_browser_process_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefBrowserProcessHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=46485b99f5f5805d9420da3af282d1279f80481c$
|
||||
// $hash=a41feff4617bc9beb0512a1350f3ac700b18ea2e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/callback_ctocpp.h"
|
||||
@@ -59,7 +59,7 @@ template <>
|
||||
cef_callback_t*
|
||||
CefCToCppRefCounted<CefCallbackCToCpp, CefCallback, cef_callback_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b9ac525a8ecae9a1219679e5d08b9a05c03e769a$
|
||||
// $hash=ec38c71520cffd0d1ff4f1ee83819c411b14c795$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/client_ctocpp.h"
|
||||
@@ -377,7 +377,7 @@ cef_client_t*
|
||||
CefCToCppRefCounted<CefClientCToCpp, CefClient, cef_client_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefClient* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f374fda38406905546bc5601c01764a9b437a7d0$
|
||||
// $hash=f2eb90b2952e6958a01be325567b35d83c0643e6$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/command_handler_ctocpp.h"
|
||||
@@ -154,7 +154,7 @@ cef_command_handler_t* CefCToCppRefCounted<
|
||||
CefCommandHandler,
|
||||
cef_command_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefCommandHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=e641e3609e9b096e6be7edc589314d4d3e909ad1$
|
||||
// $hash=aeb30347dcf0a11ee20524f07fe7eb980c2163f2$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/command_line_ctocpp.h"
|
||||
@@ -23,7 +23,7 @@ CefRefPtr<CefCommandLine> CefCommandLine::CreateCommandLine() {
|
||||
const char* api_hash = cef_api_hash(0);
|
||||
if (strcmp(api_hash, CEF_API_HASH_PLATFORM)) {
|
||||
// The libcef API hash does not match the current header API hash.
|
||||
NOTREACHED();
|
||||
DCHECK(false);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ CefRefPtr<CefCommandLine> CefCommandLine::GetGlobalCommandLine() {
|
||||
const char* api_hash = cef_api_hash(0);
|
||||
if (strcmp(api_hash, CEF_API_HASH_PLATFORM)) {
|
||||
// The libcef API hash does not match the current header API hash.
|
||||
NOTREACHED();
|
||||
DCHECK(false);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -459,7 +459,7 @@ template <>
|
||||
cef_command_line_t*
|
||||
CefCToCppRefCounted<CefCommandLineCToCpp, CefCommandLine, cef_command_line_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefCommandLine* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=1e131bf890b71867e7bad0359099dcca3455726b$
|
||||
// $hash=3c645623a6fdcc8eb1dc721fc84ca63a85cdbe3c$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/completion_callback_ctocpp.h"
|
||||
@@ -47,7 +47,7 @@ cef_completion_callback_t* CefCToCppRefCounted<
|
||||
CefCompletionCallback,
|
||||
cef_completion_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefCompletionCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=67b8663a4c699cbffeba193c1b581bce765d6d50$
|
||||
// $hash=2c8888f9fcfe40cf08eb2c9e4fff20a64c3ead7d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/context_menu_handler_ctocpp.h"
|
||||
@@ -311,7 +311,7 @@ cef_context_menu_handler_t* CefCToCppRefCounted<
|
||||
CefContextMenuHandler,
|
||||
cef_context_menu_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefContextMenuHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=0653ced3fab7b668ced0862cdd5819c585706a1d$
|
||||
// $hash=75967117879bf3ecf86bc170fa5161fc00ab236b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/context_menu_params_ctocpp.h"
|
||||
@@ -421,7 +421,7 @@ cef_context_menu_params_t* CefCToCppRefCounted<
|
||||
CefContextMenuParams,
|
||||
cef_context_menu_params_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefContextMenuParams* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f3dd306439e0d02bf7f68c7e93a1c746b2d25cb8$
|
||||
// $hash=2982f6957159b86ce039dfe9e67726a30bb98636$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/cookie_access_filter_ctocpp.h"
|
||||
@@ -97,7 +97,7 @@ cef_cookie_access_filter_t* CefCToCppRefCounted<
|
||||
CefCookieAccessFilter,
|
||||
cef_cookie_access_filter_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefCookieAccessFilter* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f620145f59aad5bc92c729dc876e9c094b06a541$
|
||||
// $hash=18732d77c6a843954449ea97aa26f0ce0b7a776a$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/cookie_manager_ctocpp.h"
|
||||
@@ -177,7 +177,7 @@ CefCToCppRefCounted<CefCookieManagerCToCpp,
|
||||
CefCookieManager,
|
||||
cef_cookie_manager_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefCookieManager* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=01563cc1ee4d46340cf89b0b1602fe08b1b05109$
|
||||
// $hash=aec8ab7d90938c62b52faa199823912b3cbc0b11$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/cookie_visitor_ctocpp.h"
|
||||
@@ -61,7 +61,7 @@ CefCToCppRefCounted<CefCookieVisitorCToCpp,
|
||||
CefCookieVisitor,
|
||||
cef_cookie_visitor_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefCookieVisitor* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=7610357e3d387904c31686a66cfbe344dd80962f$
|
||||
// $hash=26d697d88a0312f47a3fe212b4c77cdb4e8b5800$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/delete_cookies_callback_ctocpp.h"
|
||||
@@ -48,7 +48,7 @@ cef_delete_cookies_callback_t* CefCToCppRefCounted<
|
||||
CefDeleteCookiesCallback,
|
||||
cef_delete_cookies_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDeleteCookiesCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=0a0ea961456500b4545d5947422606918de83d6e$
|
||||
// $hash=145f7445eb4094e268b6a135a61535fdd780507e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/dev_tools_message_observer_ctocpp.h"
|
||||
@@ -174,7 +174,7 @@ cef_dev_tools_message_observer_t* CefCToCppRefCounted<
|
||||
cef_dev_tools_message_observer_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDevToolsMessageObserver*
|
||||
c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=d3e14a8c5fc34064be3a20f386a11b1d7962163e$
|
||||
// $hash=51a99f5889f00d4074a7e975ec95b889f1bd55d8$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/dialog_handler_ctocpp.h"
|
||||
@@ -87,7 +87,7 @@ CefCToCppRefCounted<CefDialogHandlerCToCpp,
|
||||
CefDialogHandler,
|
||||
cef_dialog_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDialogHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=1ff8df1cf72415529b26fe90318d43bfe07939f1$
|
||||
// $hash=21357f7bdec9fe05f50147f4605572ed795e6bcc$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/dictionary_value_ctocpp.h"
|
||||
@@ -756,7 +756,7 @@ cef_dictionary_value_t* CefCToCppRefCounted<
|
||||
CefDictionaryValue,
|
||||
cef_dictionary_value_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDictionaryValue* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=1a8b2156636547df981ea07ef3a017f661f1e419$
|
||||
// $hash=6715a3573be4b019dfe5e818d74d0979e081d839$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/display_handler_ctocpp.h"
|
||||
@@ -341,7 +341,7 @@ cef_display_handler_t* CefCToCppRefCounted<
|
||||
CefDisplayHandler,
|
||||
cef_display_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDisplayHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3029a85a03d6d8d68350bea5ad3448e0b142bce0$
|
||||
// $hash=7605dec503f07e4490341d3b60d2a4c0179a3d53$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/domdocument_ctocpp.h"
|
||||
@@ -299,7 +299,7 @@ template <>
|
||||
cef_domdocument_t*
|
||||
CefCToCppRefCounted<CefDOMDocumentCToCpp, CefDOMDocument, cef_domdocument_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefDOMDocument* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c55b3c940044e1ba8614366bc005404fb34f6cb1$
|
||||
// $hash=84848cc9affe98814d49ff6a27854b61bec42992$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/domnode_ctocpp.h"
|
||||
@@ -552,7 +552,7 @@ cef_domnode_t*
|
||||
CefCToCppRefCounted<CefDOMNodeCToCpp, CefDOMNode, cef_domnode_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefDOMNode* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=faf6f8643d2c54f410b3c140ffc9b6bad2a57b4a$
|
||||
// $hash=8418f3ac65c441630719aa8f6f44dfcbaf778f2f$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/domvisitor_ctocpp.h"
|
||||
@@ -53,7 +53,7 @@ template <>
|
||||
cef_domvisitor_t*
|
||||
CefCToCppRefCounted<CefDOMVisitorCToCpp, CefDOMVisitor, cef_domvisitor_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefDOMVisitor* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c6c8482357711189540cbb82ae40bf9bd78b404b$
|
||||
// $hash=23264ad881e05de87c12279841ec0f8c071c5503$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/download_handler_ctocpp.h"
|
||||
@@ -154,7 +154,7 @@ cef_download_handler_t* CefCToCppRefCounted<
|
||||
CefDownloadHandler,
|
||||
cef_download_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDownloadHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c6c7ffb21714d5d9beee716a1cce07e1b91525c5$
|
||||
// $hash=c23c4882077e50ffcf64425b3a5476ad3cfb9cb8$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/download_image_callback_ctocpp.h"
|
||||
@@ -61,7 +61,7 @@ cef_download_image_callback_t* CefCToCppRefCounted<
|
||||
CefDownloadImageCallback,
|
||||
cef_download_image_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDownloadImageCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=464ef9eb17442065860808d28cd96a5736ac118c$
|
||||
// $hash=12c936fbf246741f64131f68557538017701298c$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/download_item_callback_ctocpp.h"
|
||||
@@ -75,7 +75,7 @@ cef_download_item_callback_t* CefCToCppRefCounted<
|
||||
CefDownloadItemCallback,
|
||||
cef_download_item_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDownloadItemCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=fc5e810c3fe740f341ed8f5387fff35f101d6461$
|
||||
// $hash=d4e111b0649264459c7acfdc4b5df8ba5d6a3f13$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/download_item_ctocpp.h"
|
||||
@@ -372,7 +372,7 @@ CefCToCppRefCounted<CefDownloadItemCToCpp,
|
||||
CefDownloadItem,
|
||||
cef_download_item_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefDownloadItem* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c4cce4949cab252b568fc4dd34755b0b0908636b$
|
||||
// $hash=62aa3d486f9f864b4a5a68ebdf4ebb0695c017d1$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/drag_data_ctocpp.h"
|
||||
@@ -523,7 +523,7 @@ template <>
|
||||
cef_drag_data_t*
|
||||
CefCToCppRefCounted<CefDragDataCToCpp, CefDragData, cef_drag_data_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefDragData* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=5675b51fb9ff6ac85f60c3696b9f4155421d5ef3$
|
||||
// $hash=de7454fdcb2d48f43bb22d95d989050c3dce0f16$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/drag_handler_ctocpp.h"
|
||||
@@ -115,7 +115,7 @@ template <>
|
||||
cef_drag_handler_t*
|
||||
CefCToCppRefCounted<CefDragHandlerCToCpp, CefDragHandler, cef_drag_handler_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefDragHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=d62144c01e5efa6355c635ada089496a0fef4ec5$
|
||||
// $hash=870f78147369bc35912730714caef7559fa41c99$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/end_tracing_callback_ctocpp.h"
|
||||
@@ -55,7 +55,7 @@ cef_end_tracing_callback_t* CefCToCppRefCounted<
|
||||
CefEndTracingCallback,
|
||||
cef_end_tracing_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefEndTracingCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=93f4af6f3591fb4bd50275d518b176b890b7d901$
|
||||
// $hash=dd6eb9dad8ce6a01307fb48ec0fc4f9a2a61e4ee$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/extension_ctocpp.h"
|
||||
@@ -181,7 +181,7 @@ template <>
|
||||
cef_extension_t*
|
||||
CefCToCppRefCounted<CefExtensionCToCpp, CefExtension, cef_extension_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefExtension* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=aefea006b8e7eaaa44359ef0a29d8dc181b2ae8d$
|
||||
// $hash=b1961c4ff6c203edef2f48bdbb5ac773815a15c7$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/extension_handler_ctocpp.h"
|
||||
@@ -335,7 +335,7 @@ cef_extension_handler_t* CefCToCppRefCounted<
|
||||
CefExtensionHandler,
|
||||
cef_extension_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefExtensionHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=49a9c2dc0a50b5afa3de2fa4e78606597227f175$
|
||||
// $hash=01a59b2a4850603dcb6df74f33431d13bcf2c5c9$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/file_dialog_callback_ctocpp.h"
|
||||
@@ -78,7 +78,7 @@ cef_file_dialog_callback_t* CefCToCppRefCounted<
|
||||
CefFileDialogCallback,
|
||||
cef_file_dialog_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefFileDialogCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=7436e1945600e337c6cbc3f25cc2d0d871515a0f$
|
||||
// $hash=f39b33835f8368cc507c189fd54f63740b338f43$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/find_handler_ctocpp.h"
|
||||
@@ -60,7 +60,7 @@ template <>
|
||||
cef_find_handler_t*
|
||||
CefCToCppRefCounted<CefFindHandlerCToCpp, CefFindHandler, cef_find_handler_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefFindHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=84b98dacc31cb8f0ba37eb08757fda14267a2407$
|
||||
// $hash=0fa4cd5767bcd31e0629bd625fb7e97811265fba$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/focus_handler_ctocpp.h"
|
||||
@@ -103,7 +103,7 @@ CefCToCppRefCounted<CefFocusHandlerCToCpp,
|
||||
CefFocusHandler,
|
||||
cef_focus_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefFocusHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=dccd8985bad895305a64d49d4cc690d51ec75f8a$
|
||||
// $hash=94e3dd98f86cbce550ab941e8ad10fa5423ee44b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/frame_ctocpp.h"
|
||||
@@ -495,7 +495,7 @@ cef_frame_t*
|
||||
CefCToCppRefCounted<CefFrameCToCpp, CefFrame, cef_frame_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefFrame* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=499afac754e20ab09693803a14a047a576ed1eb2$
|
||||
// $hash=7556f5356f91f554c88cadd534f2260081b23e39$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/frame_handler_ctocpp.h"
|
||||
@@ -146,7 +146,7 @@ CefCToCppRefCounted<CefFrameHandlerCToCpp,
|
||||
CefFrameHandler,
|
||||
cef_frame_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefFrameHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=5a1986090e786d2d1c14f839cb9e18b97e1080b5$
|
||||
// $hash=5327e7e6f275416ba3e88025691c75dedcee72ef$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/get_extension_resource_callback_ctocpp.h"
|
||||
@@ -68,7 +68,7 @@ CefCToCppRefCounted<CefGetExtensionResourceCallbackCToCpp,
|
||||
CefGetExtensionResourceCallback,
|
||||
cef_get_extension_resource_callback_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefGetExtensionResourceCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=d679c42dea71a6b726ac967998a9a0cb1571d2b9$
|
||||
// $hash=feca0218f8ab6da39dcf3db81d3d3b36fcb7f27d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/image_ctocpp.h"
|
||||
@@ -334,7 +334,7 @@ cef_image_t*
|
||||
CefCToCppRefCounted<CefImageCToCpp, CefImage, cef_image_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefImage* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=eff3cd2d25f42a1155319d6eee8ea770e16c7ba7$
|
||||
// $hash=28d076cb242561f0c5de9b0274f7af860b152119$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/jsdialog_callback_ctocpp.h"
|
||||
@@ -51,7 +51,7 @@ cef_jsdialog_callback_t* CefCToCppRefCounted<
|
||||
CefJSDialogCallback,
|
||||
cef_jsdialog_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefJSDialogCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=022f9cc79a1aade870e9f1f7a77f8604c6a9c36b$
|
||||
// $hash=329506b8051faec631eb200b1a0b8da46bcb4185$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/jsdialog_handler_ctocpp.h"
|
||||
@@ -160,7 +160,7 @@ cef_jsdialog_handler_t* CefCToCppRefCounted<
|
||||
CefJSDialogHandler,
|
||||
cef_jsdialog_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefJSDialogHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a581ca5b863ea4d1c6c94f9eef37b676ab370e77$
|
||||
// $hash=0fc307ce2060ccf455514543b4dfd694300cf79a$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/keyboard_handler_ctocpp.h"
|
||||
@@ -104,7 +104,7 @@ cef_keyboard_handler_t* CefCToCppRefCounted<
|
||||
CefKeyboardHandler,
|
||||
cef_keyboard_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefKeyboardHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=55296997cc48bab5c04548fa063f0692bfad12c5$
|
||||
// $hash=d141b95304de99ab093db8f6c524a05e26f4edb5$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/life_span_handler_ctocpp.h"
|
||||
@@ -191,7 +191,7 @@ cef_life_span_handler_t* CefCToCppRefCounted<
|
||||
CefLifeSpanHandler,
|
||||
cef_life_span_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefLifeSpanHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=84d7a315d04726c8f80067ea2207618d7dfdd798$
|
||||
// $hash=5b2b8bab4a1dc4d4f26918156aaad2ee4c3caf4a$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/list_value_ctocpp.h"
|
||||
@@ -585,7 +585,7 @@ template <>
|
||||
cef_list_value_t*
|
||||
CefCToCppRefCounted<CefListValueCToCpp, CefListValue, cef_list_value_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefListValue* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=383c19c3c8f95deb40ca6eac2860b34f52b0a421$
|
||||
// $hash=cf0d34b49335d629c3cc9d8420cc834cb0430fe4$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/load_handler_ctocpp.h"
|
||||
@@ -154,7 +154,7 @@ template <>
|
||||
cef_load_handler_t*
|
||||
CefCToCppRefCounted<CefLoadHandlerCToCpp, CefLoadHandler, cef_load_handler_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefLoadHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=081d829156aaa2d8fbf4dd77c359c6be60f2daf8$
|
||||
// $hash=2525282ec6eb7a1e2f59d464a2136466ecf1aa5b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_access_callback_ctocpp.h"
|
||||
@@ -62,7 +62,7 @@ cef_media_access_callback_t* CefCToCppRefCounted<
|
||||
CefMediaAccessCallback,
|
||||
cef_media_access_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefMediaAccessCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b3e6ce9639724749d0077dbc8f6702afba83f561$
|
||||
// $hash=9b1b93f78443553cdf07bf096add8eda430ad13b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_observer_ctocpp.h"
|
||||
@@ -156,7 +156,7 @@ CefCToCppRefCounted<CefMediaObserverCToCpp,
|
||||
CefMediaObserver,
|
||||
cef_media_observer_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefMediaObserver* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f422501ac723c377df6b2ff14c8f0452de3ea055$
|
||||
// $hash=87e133cdd2e856ab8a9d45d990972e08a7a69fbc$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_route_create_callback_ctocpp.h"
|
||||
@@ -55,7 +55,7 @@ CefCToCppRefCounted<CefMediaRouteCreateCallbackCToCpp,
|
||||
CefMediaRouteCreateCallback,
|
||||
cef_media_route_create_callback_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMediaRouteCreateCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=d46a5856b98d5c55d4eb2eb6caf9d793b2519f02$
|
||||
// $hash=92edc8064b198b90008142f6d839810a498350d1$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_route_ctocpp.h"
|
||||
@@ -124,7 +124,7 @@ template <>
|
||||
cef_media_route_t*
|
||||
CefCToCppRefCounted<CefMediaRouteCToCpp, CefMediaRoute, cef_media_route_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMediaRoute* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3c1bf66c510b9f2d4a63bb400b37b93e9f555349$
|
||||
// $hash=af200e153fda6b0d33e42d2dfd05346d6e2ae7f4$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_router_ctocpp.h"
|
||||
@@ -171,7 +171,7 @@ template <>
|
||||
cef_media_router_t*
|
||||
CefCToCppRefCounted<CefMediaRouterCToCpp, CefMediaRouter, cef_media_router_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMediaRouter* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=6a7b7f88d045e2827c989a39368741a8d6064da4$
|
||||
// $hash=453d7d2c9ecc4872b77510595ae7bf78e2c39bba$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_sink_ctocpp.h"
|
||||
@@ -171,7 +171,7 @@ template <>
|
||||
cef_media_sink_t*
|
||||
CefCToCppRefCounted<CefMediaSinkCToCpp, CefMediaSink, cef_media_sink_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMediaSink* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=20d3c82d71ea1ba068d4b86487b9f24ae0bdaa29$
|
||||
// $hash=067877a410a4ae9d7d671d5826a5c93eb6cdad37$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_sink_device_info_callback_ctocpp.h"
|
||||
@@ -49,7 +49,7 @@ CefCToCppRefCounted<CefMediaSinkDeviceInfoCallbackCToCpp,
|
||||
CefMediaSinkDeviceInfoCallback,
|
||||
cef_media_sink_device_info_callback_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMediaSinkDeviceInfoCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=4ef592680d7650fb636a997f127d3c8e54d6c450$
|
||||
// $hash=f05652f759e16a6f2a3bc5f640ede99e3e123b4d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/media_source_ctocpp.h"
|
||||
@@ -84,7 +84,7 @@ template <>
|
||||
cef_media_source_t*
|
||||
CefCToCppRefCounted<CefMediaSourceCToCpp, CefMediaSource, cef_media_source_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMediaSource* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=04b75e77074493307543f443a11d0b3ffade1ff8$
|
||||
// $hash=048b61ed29f9db56cba1a55354c367f941a59b14$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/menu_model_ctocpp.h"
|
||||
@@ -1195,7 +1195,7 @@ template <>
|
||||
cef_menu_model_t*
|
||||
CefCToCppRefCounted<CefMenuModelCToCpp, CefMenuModel, cef_menu_model_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefMenuModel* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c979acd0dbde40884fedcfba613491006226accb$
|
||||
// $hash=f734e948a17b74234c1b1bc294b8856ce58ff49e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/menu_model_delegate_ctocpp.h"
|
||||
@@ -201,7 +201,7 @@ cef_menu_model_delegate_t* CefCToCppRefCounted<
|
||||
CefMenuModelDelegate,
|
||||
cef_menu_model_delegate_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefMenuModelDelegate* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a832a32c3a3d5c43676c7bc76bafbe77a964a5f1$
|
||||
// $hash=4adb66632fea25a6f73e03ee839cc77567841db2$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/navigation_entry_ctocpp.h"
|
||||
@@ -216,7 +216,7 @@ cef_navigation_entry_t* CefCToCppRefCounted<
|
||||
CefNavigationEntry,
|
||||
cef_navigation_entry_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefNavigationEntry* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=48281bb0de6e38b45f5dbc60bf7609b476241d76$
|
||||
// $hash=a9eb25ebb857e3e63d6e261f8e4b2b171c8fcf34$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/navigation_entry_visitor_ctocpp.h"
|
||||
@@ -63,7 +63,7 @@ cef_navigation_entry_visitor_t* CefCToCppRefCounted<
|
||||
cef_navigation_entry_visitor_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefNavigationEntryVisitor*
|
||||
c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f3a80bf42c989064d862e16f34e4ac045b922c0d$
|
||||
// $hash=f235c0f4a088d1b4487af49d98c5d08044b1419c$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/pdf_print_callback_ctocpp.h"
|
||||
@@ -55,7 +55,7 @@ cef_pdf_print_callback_t* CefCToCppRefCounted<
|
||||
CefPdfPrintCallback,
|
||||
cef_pdf_print_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPdfPrintCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=2ff01ee1ca831e910dcd7b1767a0e9d251aa9747$
|
||||
// $hash=866524abe3d8f0ad9953a6364bbb49f625fe3a38$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/permission_handler_ctocpp.h"
|
||||
@@ -151,7 +151,7 @@ cef_permission_handler_t* CefCToCppRefCounted<
|
||||
CefPermissionHandler,
|
||||
cef_permission_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPermissionHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=9262abf05b3c8486a7b8bb0488d8b59a667d6b44$
|
||||
// $hash=a84aa33807e480e03cc065b3b195d2fcf766cbfb$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/permission_prompt_callback_ctocpp.h"
|
||||
@@ -49,7 +49,7 @@ CefCToCppRefCounted<CefPermissionPromptCallbackCToCpp,
|
||||
CefPermissionPromptCallback,
|
||||
cef_permission_prompt_callback_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefPermissionPromptCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b8f7072a18170af6fff845c7b911c9e9cb845658$
|
||||
// $hash=35bed657bdfd1e13a8b76b44a0d58d1473663e9d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/post_data_ctocpp.h"
|
||||
@@ -184,7 +184,7 @@ template <>
|
||||
cef_post_data_t*
|
||||
CefCToCppRefCounted<CefPostDataCToCpp, CefPostData, cef_post_data_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefPostData* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=46e4cc8924d3070e56735a5b2b0746ae82d25b2b$
|
||||
// $hash=aa7dd08d585fb1c151ac70040266b2cc6daaa8fd$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/post_data_element_ctocpp.h"
|
||||
@@ -178,7 +178,7 @@ cef_post_data_element_t* CefCToCppRefCounted<
|
||||
CefPostDataElement,
|
||||
cef_post_data_element_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPostDataElement* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=e1ea194c8ef69a57ee4bee0b1729798128eb8754$
|
||||
// $hash=b992dc943eedb028a5018c6204aa6ce9a106b367$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/preference_manager_ctocpp.h"
|
||||
@@ -164,7 +164,7 @@ cef_preference_manager_t* CefCToCppRefCounted<
|
||||
CefRequestContextCToCpp::Unwrap(
|
||||
reinterpret_cast<CefRequestContext*>(c)));
|
||||
}
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=952c6b775c3954a28e87a4c15625dcfa14829ec4$
|
||||
// $hash=c677cabce869cc187866e07f53fcf235018d8978$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/preference_registrar_ctocpp.h"
|
||||
@@ -60,7 +60,7 @@ cef_preference_registrar_t* CefCToCppScoped<CefPreferenceRegistrarCToCpp,
|
||||
CefPreferenceRegistrar,
|
||||
cef_preference_registrar_t>::
|
||||
UnwrapDerivedOwn(CefWrapperType type, CefOwnPtr<CefPreferenceRegistrar> c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -69,7 +69,7 @@ cef_preference_registrar_t* CefCToCppScoped<CefPreferenceRegistrarCToCpp,
|
||||
CefPreferenceRegistrar,
|
||||
cef_preference_registrar_t>::
|
||||
UnwrapDerivedRaw(CefWrapperType type, CefRawPtr<CefPreferenceRegistrar> c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=93f9d3b5ef4e7f4746529d2d1e0ee61952e56be0$
|
||||
// $hash=0c0a1efb7a6ed661e2947b9b820e1fb5b57e0ad3$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/print_dialog_callback_ctocpp.h"
|
||||
@@ -70,7 +70,7 @@ cef_print_dialog_callback_t* CefCToCppRefCounted<
|
||||
CefPrintDialogCallback,
|
||||
cef_print_dialog_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPrintDialogCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=6b8fc1fd1fff48712c77d9402a0a1d747e14b5a1$
|
||||
// $hash=95827cf69c533ca04e0e49e45d5e36b507378aeb$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/print_handler_ctocpp.h"
|
||||
@@ -215,7 +215,7 @@ CefCToCppRefCounted<CefPrintHandlerCToCpp,
|
||||
CefPrintHandler,
|
||||
cef_print_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPrintHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=6d7e2581786609dd5b472dd72dae47f26c1e7e7d$
|
||||
// $hash=4ceb6cf047750386cd44026b4b3f7a2caa1dac9e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/print_job_callback_ctocpp.h"
|
||||
@@ -47,7 +47,7 @@ cef_print_job_callback_t* CefCToCppRefCounted<
|
||||
CefPrintJobCallback,
|
||||
cef_print_job_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPrintJobCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=479c82d8c72edba5bc48bdd8e32677ebe0bc720e$
|
||||
// $hash=388d22bd24b0e340d9509abec2b654680ac6779d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/print_settings_ctocpp.h"
|
||||
@@ -453,7 +453,7 @@ CefCToCppRefCounted<CefPrintSettingsCToCpp,
|
||||
CefPrintSettings,
|
||||
cef_print_settings_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefPrintSettings* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ac50966059a1ba14d20824a27bcc19e9c0c0d910$
|
||||
// $hash=f542bb5ffcf0d7543e424741a62e93c58cc2e3ee$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/process_message_ctocpp.h"
|
||||
@@ -165,7 +165,7 @@ cef_process_message_t* CefCToCppRefCounted<
|
||||
CefProcessMessage,
|
||||
cef_process_message_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefProcessMessage* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ce1b7280f3a73296607a5f4440bffad40c73d5ad$
|
||||
// $hash=d38e55ad4edf278002de04d58023524d7ce633a8$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/read_handler_ctocpp.h"
|
||||
@@ -124,7 +124,7 @@ template <>
|
||||
cef_read_handler_t*
|
||||
CefCToCppRefCounted<CefReadHandlerCToCpp, CefReadHandler, cef_read_handler_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefReadHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=e1eade4ceaefc7079366e8b0d29d499590273e8c$
|
||||
// $hash=004bfcbf30ee0b2ecc97828c943d1302c033b7d9$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/registration_ctocpp.h"
|
||||
@@ -31,7 +31,7 @@ CefCToCppRefCounted<CefRegistrationCToCpp,
|
||||
CefRegistration,
|
||||
cef_registration_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRegistration* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=65a8e5baeed8773ac21f0decf0f0b82c16754aef$
|
||||
// $hash=0720ce9a5427a1a1a161898e059b84cfbbbecbfb$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/render_handler_ctocpp.h"
|
||||
@@ -529,7 +529,7 @@ CefCToCppRefCounted<CefRenderHandlerCToCpp,
|
||||
CefRenderHandler,
|
||||
cef_render_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRenderHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a6f27ab9f9842ab192ea253a5e66aea4e37466f8$
|
||||
// $hash=1bb6593092ca6768ea5a4d07cd9afbe23460e612$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/render_process_handler_ctocpp.h"
|
||||
@@ -289,7 +289,7 @@ cef_render_process_handler_t* CefCToCppRefCounted<
|
||||
CefRenderProcessHandler,
|
||||
cef_render_process_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRenderProcessHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ebc2c4b31cdbde186263ed5eccbb6cc3e7da1d30$
|
||||
// $hash=9c0cf12774084952a4497e83741a2f9988923109$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/request_context_ctocpp.h"
|
||||
@@ -590,7 +590,7 @@ cef_request_context_t* CefCToCppRefCounted<
|
||||
CefRequestContext,
|
||||
cef_request_context_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRequestContext* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=9125fa607d69db95c303e9c73448e854c44d15cc$
|
||||
// $hash=85cfe06a67d84dde8c980d3c888f88eb382a9f55$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/request_context_handler_ctocpp.h"
|
||||
@@ -97,7 +97,7 @@ cef_request_context_handler_t* CefCToCppRefCounted<
|
||||
CefRequestContextHandler,
|
||||
cef_request_context_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRequestContextHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3454ad8f0a09ee48d7376f8e3eabcf967959de82$
|
||||
// $hash=6f9bdbf9eefdaee77d0e87c1c55b564752e903cd$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/request_ctocpp.h"
|
||||
@@ -460,7 +460,7 @@ cef_request_t*
|
||||
CefCToCppRefCounted<CefRequestCToCpp, CefRequest, cef_request_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefRequest* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=75c5c934d39c9d12cd7731203c3ac941cdbc52a3$
|
||||
// $hash=19152f67304ceaf2d54f0b8133f317974145d40e$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/request_handler_ctocpp.h"
|
||||
@@ -403,7 +403,7 @@ cef_request_handler_t* CefCToCppRefCounted<
|
||||
CefRequestHandler,
|
||||
cef_request_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRequestHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=93f0764aabe8525c1a3473c9e345b926403fa78b$
|
||||
// $hash=26f0b2cca6c62191dcdc1f70e415cd615a66cee5$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resolve_callback_ctocpp.h"
|
||||
@@ -65,7 +65,7 @@ cef_resolve_callback_t* CefCToCppRefCounted<
|
||||
CefResolveCallback,
|
||||
cef_resolve_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResolveCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=6c8e563997f192706a1cddfc1d785bffebdd8174$
|
||||
// $hash=2351c980bcf0be831b2803207665595003a6ae9b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resource_bundle_ctocpp.h"
|
||||
@@ -100,7 +100,7 @@ cef_resource_bundle_t* CefCToCppRefCounted<
|
||||
CefResourceBundle,
|
||||
cef_resource_bundle_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResourceBundle* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=4d903123dd75fca6eec9810c797a4b58b06a9b03$
|
||||
// $hash=a89889b633cfe23052e084a41e2bd6dc3abaca78$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resource_bundle_handler_ctocpp.h"
|
||||
@@ -97,7 +97,7 @@ cef_resource_bundle_handler_t* CefCToCppRefCounted<
|
||||
CefResourceBundleHandler,
|
||||
cef_resource_bundle_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResourceBundleHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=35588cfd8c8eb4000eb3de5edec70d361897c760$
|
||||
// $hash=e6ff075b94ab1f2196fd4ba112f014da22cfed8f$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resource_handler_ctocpp.h"
|
||||
@@ -245,7 +245,7 @@ cef_resource_handler_t* CefCToCppRefCounted<
|
||||
CefResourceHandler,
|
||||
cef_resource_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResourceHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=27162e0430742e5c8ccf73dc8fca20572132a530$
|
||||
// $hash=453b8327acaa3268d910e7bbc14e735b176d8c47$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resource_read_callback_ctocpp.h"
|
||||
@@ -48,7 +48,7 @@ cef_resource_read_callback_t* CefCToCppRefCounted<
|
||||
CefResourceReadCallback,
|
||||
cef_resource_read_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResourceReadCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=9735af448f1beaad6ba7b71805aecc8b8f55d830$
|
||||
// $hash=bbb95fcb51fd9200a472d7a35f857750f4f8798b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resource_request_handler_ctocpp.h"
|
||||
@@ -300,7 +300,7 @@ cef_resource_request_handler_t* CefCToCppRefCounted<
|
||||
cef_resource_request_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResourceRequestHandler*
|
||||
c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b6351a3c3dc209334aa1371934d5eb846ed2f378$
|
||||
// $hash=c91c9abe489d40b7841d1de59c7fecf6cf4af362$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/resource_skip_callback_ctocpp.h"
|
||||
@@ -48,7 +48,7 @@ cef_resource_skip_callback_t* CefCToCppRefCounted<
|
||||
CefResourceSkipCallback,
|
||||
cef_resource_skip_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResourceSkipCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=7907e6e61d139645840b49fb291d761c085b77eb$
|
||||
// $hash=4a42afa43cf782789da01e2bc97fe635e530db7b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/response_ctocpp.h"
|
||||
@@ -338,7 +338,7 @@ template <>
|
||||
cef_response_t*
|
||||
CefCToCppRefCounted<CefResponseCToCpp, CefResponse, cef_response_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefResponse* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=024aa882f5db1793297f5634152de31edf552559$
|
||||
// $hash=55cc0e8d94b38923a37942b57ffe26ac9be16ccf$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/response_filter_ctocpp.h"
|
||||
@@ -83,7 +83,7 @@ cef_response_filter_t* CefCToCppRefCounted<
|
||||
CefResponseFilter,
|
||||
cef_response_filter_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefResponseFilter* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=23cebc9bbfaeb250f98ce8357a5a473ce964db3b$
|
||||
// $hash=71acbdd04b0d9ed591ec351684b09f1375308cd6$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/run_context_menu_callback_ctocpp.h"
|
||||
@@ -64,7 +64,7 @@ cef_run_context_menu_callback_t* CefCToCppRefCounted<
|
||||
cef_run_context_menu_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRunContextMenuCallback*
|
||||
c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=875b4e63f320e3ee1c1802fe28e8a842e4b89fdc$
|
||||
// $hash=88c6cc75c33fd04ded84b3a8f99bcb537d462a0d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/run_file_dialog_callback_ctocpp.h"
|
||||
@@ -65,7 +65,7 @@ cef_run_file_dialog_callback_t* CefCToCppRefCounted<
|
||||
cef_run_file_dialog_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRunFileDialogCallback*
|
||||
c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f5141438ba9687494eb24e71c67d59b57eba60ef$
|
||||
// $hash=b1531352b058e448d89cee9e34c9ff512f7b61dc$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/run_quick_menu_callback_ctocpp.h"
|
||||
@@ -63,7 +63,7 @@ cef_run_quick_menu_callback_t* CefCToCppRefCounted<
|
||||
CefRunQuickMenuCallback,
|
||||
cef_run_quick_menu_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefRunQuickMenuCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3a371669a10c2618d3b9f6386bb8e6d2f704398f$
|
||||
// $hash=3e078458c9ec423ac8ea129888485e600896e03f$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/scheme_handler_factory_ctocpp.h"
|
||||
@@ -68,7 +68,7 @@ cef_scheme_handler_factory_t* CefCToCppRefCounted<
|
||||
CefSchemeHandlerFactory,
|
||||
cef_scheme_handler_factory_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefSchemeHandlerFactory* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=1790a3bb7eb1f77332e52acce06b7b8de24d4f9c$
|
||||
// $hash=d38b1cdd4e0df15235315e9efeb5c4ab3b92930b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/scheme_registrar_ctocpp.h"
|
||||
@@ -54,7 +54,7 @@ cef_scheme_registrar_t* CefCToCppScoped<
|
||||
CefSchemeRegistrar,
|
||||
cef_scheme_registrar_t>::UnwrapDerivedOwn(CefWrapperType type,
|
||||
CefOwnPtr<CefSchemeRegistrar> c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ cef_scheme_registrar_t* CefCToCppScoped<
|
||||
CefSchemeRegistrar,
|
||||
cef_scheme_registrar_t>::UnwrapDerivedRaw(CefWrapperType type,
|
||||
CefRawPtr<CefSchemeRegistrar> c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=6949f8943b86edf4d444adbb8e20b8cff183eadb$
|
||||
// $hash=626530c59232a37a7f7a744637d11875a7d0d0f7$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/select_client_certificate_callback_ctocpp.h"
|
||||
@@ -54,7 +54,7 @@ CefCToCppRefCounted<CefSelectClientCertificateCallbackCToCpp,
|
||||
CefSelectClientCertificateCallback,
|
||||
cef_select_client_certificate_callback_t>::
|
||||
UnwrapDerived(CefWrapperType type, CefSelectClientCertificateCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ac37df1c5a9a759393e0c7b33e60af3477ec8ce8$
|
||||
// $hash=f1a9552e2522cec989f7267b64a4298964982d46$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/server_ctocpp.h"
|
||||
@@ -334,7 +334,7 @@ cef_server_t*
|
||||
CefCToCppRefCounted<CefServerCToCpp, CefServer, cef_server_t>::UnwrapDerived(
|
||||
CefWrapperType type,
|
||||
CefServer* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=74bf4d64d8bff289328a21b486d9848e39307f19$
|
||||
// $hash=f94b3d675dfb95c556fb4b3f8c618507aeca89ad$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/server_handler_ctocpp.h"
|
||||
@@ -257,7 +257,7 @@ CefCToCppRefCounted<CefServerHandlerCToCpp,
|
||||
CefServerHandler,
|
||||
cef_server_handler_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefServerHandler* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b6872491fd6b64121984c0b979ef252d09003194$
|
||||
// $hash=392363e82a7131e201fe074eda87020b8c2716de$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/set_cookie_callback_ctocpp.h"
|
||||
@@ -48,7 +48,7 @@ cef_set_cookie_callback_t* CefCToCppRefCounted<
|
||||
CefSetCookieCallback,
|
||||
cef_set_cookie_callback_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefSetCookieCallback* c) {
|
||||
NOTREACHED() << "Unexpected class type: " << type;
|
||||
DCHECK(false) << "Unexpected class type: " << type;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=488fdead59657c8bdb17e6d3d6a970f6b65e970e$
|
||||
// $hash=eb7080f1bb2346bd513267f4c8c66af1ca0eb91f$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/shared_memory_region_ctocpp.h"
|
||||
@@ -84,7 +84,7 @@ cef_shared_memory_region_t* CefCToCppRefCounted<
|
||||
CefSharedMemoryRegion,
|
||||
cef_shared_memory_region_t>::UnwrapDerived(CefWrapperType type,
|
||||
CefSharedMemoryRegion* c) {
|
||||
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
Reference in New Issue
Block a user