mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Create 2272 release branch for CEF3.
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/2272@1993 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
131
tests/unittests/client_app_delegates.cc
Normal file
131
tests/unittests/client_app_delegates.cc
Normal file
@ -0,0 +1,131 @@
|
||||
// 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/client_app.h"
|
||||
|
||||
using client::ClientApp;
|
||||
|
||||
void CreateBrowserDelegates(ClientApp::BrowserDelegateSet& delegates) {
|
||||
// Bring in the Frame tests.
|
||||
extern void CreateFrameBrowserTests(
|
||||
ClientApp::BrowserDelegateSet& delegates);
|
||||
CreateFrameBrowserTests(delegates);
|
||||
|
||||
// Bring in the Navigation tests.
|
||||
extern void CreateNavigationBrowserTests(
|
||||
ClientApp::BrowserDelegateSet& delegates);
|
||||
CreateNavigationBrowserTests(delegates);
|
||||
|
||||
// Bring in the RequestHandler tests.
|
||||
extern void CreateRequestHandlerBrowserTests(
|
||||
ClientApp::BrowserDelegateSet& delegates);
|
||||
CreateRequestHandlerBrowserTests(delegates);
|
||||
|
||||
// Bring in the V8 tests.
|
||||
extern void CreateV8BrowserTests(
|
||||
ClientApp::BrowserDelegateSet& delegates);
|
||||
CreateV8BrowserTests(delegates);
|
||||
}
|
||||
|
||||
void CreateRenderDelegates(ClientApp::RenderDelegateSet& delegates) {
|
||||
// Bring in the Frame tests.
|
||||
extern void CreateFrameRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateFrameRendererTests(delegates);
|
||||
|
||||
// Bring in the DOM tests.
|
||||
extern void CreateDOMRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateDOMRendererTests(delegates);
|
||||
|
||||
// Bring in the message router tests.
|
||||
extern void CreateMessageRouterRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateMessageRouterRendererTests(delegates);
|
||||
|
||||
// Bring in the Navigation tests.
|
||||
extern void CreateNavigationRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateNavigationRendererTests(delegates);
|
||||
|
||||
// Bring in the process message tests.
|
||||
extern void CreateProcessMessageRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateProcessMessageRendererTests(delegates);
|
||||
|
||||
// Bring in the RequestHandler tests.
|
||||
extern void CreateRequestHandlerRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateRequestHandlerRendererTests(delegates);
|
||||
|
||||
// Bring in the Request tests.
|
||||
extern void CreateRequestRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateRequestRendererTests(delegates);
|
||||
|
||||
// Bring in the routing test handler delegate.
|
||||
extern void CreateRoutingTestHandlerDelegate(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateRoutingTestHandlerDelegate(delegates);
|
||||
|
||||
// Bring in the URLRequest tests.
|
||||
extern void CreateURLRequestRendererTests(
|
||||
ClientApp::RenderDelegateSet& delegates);
|
||||
CreateURLRequestRendererTests(delegates);
|
||||
|
||||
// Bring in the V8 tests.
|
||||
extern void CreateV8RendererTests(
|
||||
ClientApp::RenderDelegateSet& 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 ClientApp::CreateBrowserDelegates(BrowserDelegateSet& delegates) {
|
||||
::CreateBrowserDelegates(delegates);
|
||||
}
|
||||
|
||||
// static
|
||||
void ClientApp::CreateRenderDelegates(RenderDelegateSet& delegates) {
|
||||
::CreateRenderDelegates(delegates);
|
||||
}
|
||||
|
||||
// static
|
||||
void ClientApp::RegisterCustomSchemes(
|
||||
CefRefPtr<CefSchemeRegistrar> registrar,
|
||||
std::vector<CefString>& cookiable_schemes) {
|
||||
::RegisterCustomSchemes(registrar, cookiable_schemes);
|
||||
}
|
||||
|
||||
// static
|
||||
CefRefPtr<CefPrintHandler> ClientApp::CreatePrintHandler() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
} // namespace client
|
||||
|
Reference in New Issue
Block a user