mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2015 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
		
			
				
	
	
		
			134 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			134 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2012 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.
 | |
| 
 | |
| #include "tests/cefclient/browser/client_app_browser.h"
 | |
| #include "tests/cefclient/renderer/client_app_renderer.h"
 | |
| 
 | |
| using client::ClientAppBrowser;
 | |
| using client::ClientAppRenderer;
 | |
| 
 | |
| void CreateBrowserDelegates(ClientAppBrowser::DelegateSet& delegates) {
 | |
|   // Bring in the Frame tests.
 | |
|   extern void CreateFrameBrowserTests(
 | |
|       ClientAppBrowser::DelegateSet& delegates);
 | |
|   CreateFrameBrowserTests(delegates);
 | |
| 
 | |
|   // Bring in the Navigation tests.
 | |
|   extern void CreateNavigationBrowserTests(
 | |
|       ClientAppBrowser::DelegateSet& delegates);
 | |
|   CreateNavigationBrowserTests(delegates);
 | |
| 
 | |
|   // Bring in the RequestHandler tests.
 | |
|   extern void CreateRequestHandlerBrowserTests(
 | |
|       ClientAppBrowser::DelegateSet& delegates);
 | |
|   CreateRequestHandlerBrowserTests(delegates);
 | |
| 
 | |
|   // Bring in the V8 tests.
 | |
|   extern void CreateV8BrowserTests(
 | |
|       ClientAppBrowser::DelegateSet& delegates);
 | |
|   CreateV8BrowserTests(delegates);
 | |
| }
 | |
| 
 | |
| void CreateRenderDelegates(ClientAppRenderer::DelegateSet& delegates) {
 | |
|   // Bring in the Frame tests.
 | |
|   extern void CreateFrameRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateFrameRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the DOM tests.
 | |
|   extern void CreateDOMRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateDOMRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the message router tests.
 | |
|   extern void CreateMessageRouterRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateMessageRouterRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the Navigation tests.
 | |
|   extern void CreateNavigationRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateNavigationRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the process message tests.
 | |
|   extern void CreateProcessMessageRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateProcessMessageRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the RequestHandler tests.
 | |
|   extern void CreateRequestHandlerRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateRequestHandlerRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the Request tests.
 | |
|   extern void CreateRequestRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateRequestRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the routing test handler delegate.
 | |
|   extern void CreateRoutingTestHandlerDelegate(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateRoutingTestHandlerDelegate(delegates);
 | |
| 
 | |
|   // Bring in the URLRequest tests.
 | |
|   extern void CreateURLRequestRendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateURLRequestRendererTests(delegates);
 | |
| 
 | |
|   // Bring in the V8 tests.
 | |
|   extern void CreateV8RendererTests(
 | |
|       ClientAppRenderer::DelegateSet& delegates);
 | |
|   CreateV8RendererTests(delegates);
 | |
| }
 | |
| 
 | |
| void RegisterCustomSchemes(
 | |
|     CefRefPtr<CefSchemeRegistrar> registrar,
 | |
|     std::vector<CefString>& cookiable_schemes) {
 | |
|   // Bring in the scheme handler tests.
 | |
|   extern void RegisterSchemeHandlerCustomSchemes(
 | |
|       CefRefPtr<CefSchemeRegistrar> registrar,
 | |
|       std::vector<CefString>& cookiable_schemes);
 | |
|   RegisterSchemeHandlerCustomSchemes(registrar, cookiable_schemes);
 | |
| 
 | |
|   // Bring in the cookie tests.
 | |
|   extern void RegisterCookieCustomSchemes(
 | |
|       CefRefPtr<CefSchemeRegistrar> registrar,
 | |
|       std::vector<CefString>& cookiable_schemes);
 | |
|   RegisterCookieCustomSchemes(registrar, cookiable_schemes);
 | |
| 
 | |
|   // Bring in the URLRequest tests.
 | |
|   extern void RegisterURLRequestCustomSchemes(
 | |
|       CefRefPtr<CefSchemeRegistrar> registrar,
 | |
|       std::vector<CefString>& cookiable_schemes);
 | |
|   RegisterURLRequestCustomSchemes(registrar, cookiable_schemes);
 | |
| }
 | |
| 
 | |
| 
 | |
| namespace client {
 | |
| 
 | |
| // static
 | |
| void ClientAppBrowser::CreateDelegates(DelegateSet& delegates) {
 | |
|   ::CreateBrowserDelegates(delegates);
 | |
| }
 | |
| 
 | |
| // static
 | |
| CefRefPtr<CefPrintHandler> ClientAppBrowser::CreatePrintHandler() {
 | |
|   return NULL;
 | |
| }
 | |
| 
 | |
| // static
 | |
| void ClientAppRenderer::CreateDelegates(DelegateSet& delegates) {
 | |
|   ::CreateRenderDelegates(delegates);
 | |
| }
 | |
| 
 | |
| // static
 | |
| void ClientApp::RegisterCustomSchemes(
 | |
|     CefRefPtr<CefSchemeRegistrar> registrar,
 | |
|     std::vector<CefString>& cookiable_schemes) {
 | |
|   ::RegisterCustomSchemes(registrar, cookiable_schemes);
 | |
| }
 | |
| 
 | |
| }  // namespace client
 | |
| 
 |