Home
last modified time | relevance | path

Searched refs:ClientApp (Results 1 – 12 of 12) sorted by relevance

/third_party/cef/tests/shared/common/
Dclient_app.cc22 ClientApp::ClientApp() {} in ClientApp() function in client::ClientApp
25 ClientApp::ProcessType ClientApp::GetProcessType( in GetProcessType()
42 void ClientApp::OnRegisterCustomSchemes( in OnRegisterCustomSchemes()
Dclient_app.h16 class ClientApp : public CefApp {
18 ClientApp();
39 DISALLOW_COPY_AND_ASSIGN(ClientApp);
Dclient_app_other.h14 class ClientAppOther : public ClientApp {
/third_party/cef/tests/cefclient/
Dcefclient_gtk.cc67 ClientApp::ProcessType process_type = ClientApp::GetProcessType(command_line); in RunMain()
68 if (process_type == ClientApp::BrowserProcess) { in RunMain()
70 } else if (process_type == ClientApp::RendererProcess || in RunMain()
71 process_type == ClientApp::ZygoteProcess) { in RunMain()
76 } else if (process_type == ClientApp::OtherProcess) { in RunMain()
Dcefclient_win.cc58 ClientApp::ProcessType process_type = ClientApp::GetProcessType(command_line); in RunMain()
59 if (process_type == ClientApp::BrowserProcess) in RunMain()
61 else if (process_type == ClientApp::RendererProcess) in RunMain()
63 else if (process_type == ClientApp::OtherProcess) in RunMain()
Dcefclient_mac.mm376 // Create a ClientApp of the correct type.
378 ClientApp::ProcessType process_type =
379 ClientApp::GetProcessType(command_line);
380 if (process_type == ClientApp::BrowserProcess)
/third_party/cef/tests/shared/
Dprocess_helper_mac.cc42 ClientApp::ProcessType process_type = ClientApp::GetProcessType(command_line); in RunMain()
43 if (process_type == ClientApp::RendererProcess) in RunMain()
45 else if (process_type == ClientApp::OtherProcess) in RunMain()
/third_party/cef/tests/ceftests/
Drun_all_unittests.cc143 client::ClientApp::ProcessType process_type = in main()
144 client::ClientApp::GetProcessType(test_suite.command_line()); in main()
145 if (process_type == client::ClientApp::BrowserProcess) { in main()
148 } else if (process_type == client::ClientApp::RendererProcess || in main()
149 process_type == client::ClientApp::ZygoteProcess) { in main()
151 } else if (process_type == client::ClientApp::OtherProcess) { in main()
Dclient_app_delegates.cc139 void ClientApp::RegisterCustomSchemes(CefRawPtr<CefSchemeRegistrar> registrar) { in RegisterCustomSchemes()
/third_party/cef/tests/cefclient/common/
Dclient_app_delegates_common.cc11 void ClientApp::RegisterCustomSchemes(CefRawPtr<CefSchemeRegistrar> registrar) { in RegisterCustomSchemes()
/third_party/cef/tests/shared/browser/
Dclient_app_browser.h16 class ClientAppBrowser : public ClientApp, public CefBrowserProcessHandler {
/third_party/cef/tests/shared/renderer/
Dclient_app_renderer.h16 class ClientAppRenderer : public ClientApp, public CefRenderProcessHandler {