mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2023 The Chromium Embedded Framework Authors. All rights
 | |
| // reserved. Use of this source code is governed by a BSD-style license that
 | |
| // can be found in the LICENSE file.
 | |
| //
 | |
| // ---------------------------------------------------------------------------
 | |
| //
 | |
| // This file was generated by the CEF translator tool. If making changes by
 | |
| // hand only do so within the body of existing method and function
 | |
| // implementations. See the translator.README.txt file in the tools directory
 | |
| // for more information.
 | |
| //
 | |
| // $hash=d180fbc2710aeb96dc4db266168281c29cc43642$
 | |
| //
 | |
| 
 | |
| #include "libcef_dll/cpptoc/test/test_server_handler_cpptoc.h"
 | |
| #include "libcef_dll/ctocpp/request_ctocpp.h"
 | |
| #include "libcef_dll/ctocpp/test/test_server_connection_ctocpp.h"
 | |
| #include "libcef_dll/ctocpp/test/test_server_ctocpp.h"
 | |
| #include "libcef_dll/shutdown_checker.h"
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| // MEMBER FUNCTIONS - Body may be edited by hand.
 | |
| 
 | |
| int CEF_CALLBACK test_server_handler_on_test_server_request(
 | |
|     struct _cef_test_server_handler_t* self,
 | |
|     cef_test_server_t* server,
 | |
|     cef_request_t* request,
 | |
|     struct _cef_test_server_connection_t* connection) {
 | |
|   shutdown_checker::AssertNotShutdown();
 | |
| 
 | |
|   // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
 | |
| 
 | |
|   DCHECK(self);
 | |
|   if (!self) {
 | |
|     return 0;
 | |
|   }
 | |
|   // Verify param: server; type: refptr_diff
 | |
|   DCHECK(server);
 | |
|   if (!server) {
 | |
|     return 0;
 | |
|   }
 | |
|   // Verify param: request; type: refptr_diff
 | |
|   DCHECK(request);
 | |
|   if (!request) {
 | |
|     return 0;
 | |
|   }
 | |
|   // Verify param: connection; type: refptr_diff
 | |
|   DCHECK(connection);
 | |
|   if (!connection) {
 | |
|     return 0;
 | |
|   }
 | |
| 
 | |
|   // Execute
 | |
|   bool _retval = CefTestServerHandlerCppToC::Get(self)->OnTestServerRequest(
 | |
|       CefTestServerCToCpp::Wrap(server), CefRequestCToCpp::Wrap(request),
 | |
|       CefTestServerConnectionCToCpp::Wrap(connection));
 | |
| 
 | |
|   // Return type: bool
 | |
|   return _retval;
 | |
| }
 | |
| 
 | |
| }  // namespace
 | |
| 
 | |
| // CONSTRUCTOR - Do not edit by hand.
 | |
| 
 | |
| CefTestServerHandlerCppToC::CefTestServerHandlerCppToC() {
 | |
|   GetStruct()->on_test_server_request =
 | |
|       test_server_handler_on_test_server_request;
 | |
| }
 | |
| 
 | |
| // DESTRUCTOR - Do not edit by hand.
 | |
| 
 | |
| CefTestServerHandlerCppToC::~CefTestServerHandlerCppToC() {
 | |
|   shutdown_checker::AssertNotShutdown();
 | |
| }
 | |
| 
 | |
| template <>
 | |
| CefRefPtr<CefTestServerHandler> CefCppToCRefCounted<
 | |
|     CefTestServerHandlerCppToC,
 | |
|     CefTestServerHandler,
 | |
|     cef_test_server_handler_t>::UnwrapDerived(CefWrapperType type,
 | |
|                                               cef_test_server_handler_t* s) {
 | |
|   NOTREACHED() << "Unexpected class type: " << type;
 | |
|   return nullptr;
 | |
| }
 | |
| 
 | |
| template <>
 | |
| CefWrapperType CefCppToCRefCounted<CefTestServerHandlerCppToC,
 | |
|                                    CefTestServerHandler,
 | |
|                                    cef_test_server_handler_t>::kWrapperType =
 | |
|     WT_TEST_SERVER_HANDLER;
 |