2015-01-31 05:41:36 +01:00
|
|
|
// Copyright (c) 2013 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.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/browser/client_app_browser.h"
|
2015-01-31 05:41:36 +01:00
|
|
|
|
2015-02-02 22:03:19 +01:00
|
|
|
#include "include/base/cef_logging.h"
|
2015-01-31 05:41:36 +01:00
|
|
|
#include "include/cef_cookie.h"
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/browser/main_message_loop_external_pump.h"
|
|
|
|
#include "tests/shared/common/client_switches.h"
|
2015-01-31 05:41:36 +01:00
|
|
|
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
ClientAppBrowser::ClientAppBrowser() {
|
2015-09-09 16:05:39 +02:00
|
|
|
CreateDelegates(delegates_);
|
2015-01-31 05:41:36 +01:00
|
|
|
}
|
|
|
|
|
2021-04-09 20:34:45 +02:00
|
|
|
// static
|
|
|
|
void ClientAppBrowser::PopulateSettings(CefRefPtr<CefCommandLine> command_line,
|
|
|
|
CefSettings& settings) {
|
|
|
|
#if (defined(OS_WIN) || defined(OS_LINUX))
|
|
|
|
settings.multi_threaded_message_loop =
|
|
|
|
command_line->HasSwitch(client::switches::kMultiThreadedMessageLoop);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!settings.multi_threaded_message_loop) {
|
|
|
|
settings.external_message_pump =
|
|
|
|
command_line->HasSwitch(client::switches::kExternalMessagePump);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> cookieable_schemes;
|
|
|
|
RegisterCookieableSchemes(cookieable_schemes);
|
|
|
|
if (!cookieable_schemes.empty()) {
|
|
|
|
std::string list_str;
|
|
|
|
for (const auto& scheme : cookieable_schemes) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!list_str.empty()) {
|
2021-04-09 20:34:45 +02:00
|
|
|
list_str += ",";
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2021-04-09 20:34:45 +02:00
|
|
|
list_str += scheme;
|
|
|
|
}
|
|
|
|
CefString(&settings.cookieable_schemes_list) = list_str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 00:14:59 +02:00
|
|
|
void ClientAppBrowser::OnBeforeCommandLineProcessing(
|
|
|
|
const CefString& process_type,
|
|
|
|
CefRefPtr<CefCommandLine> command_line) {
|
|
|
|
// Pass additional command-line flags to the browser process.
|
|
|
|
if (process_type.empty()) {
|
|
|
|
// Pass additional command-line flags when off-screen rendering is enabled.
|
2018-09-26 13:25:58 +02:00
|
|
|
if (command_line->HasSwitch(switches::kOffScreenRenderingEnabled) &&
|
|
|
|
!command_line->HasSwitch(switches::kSharedTextureEnabled)) {
|
2015-08-18 00:14:59 +02:00
|
|
|
// Use software rendering and compositing (disable GPU) for increased FPS
|
|
|
|
// and decreased CPU usage. This will also disable WebGL so remove these
|
|
|
|
// switches if you need that capability.
|
2023-03-13 18:45:20 +01:00
|
|
|
// See https://github.com/chromiumembedded/cef/issues/1257 for details.
|
2015-08-18 00:14:59 +02:00
|
|
|
if (!command_line->HasSwitch(switches::kEnableGPU)) {
|
|
|
|
command_line->AppendSwitch("disable-gpu");
|
|
|
|
command_line->AppendSwitch("disable-gpu-compositing");
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 16:05:39 +02:00
|
|
|
|
2016-08-08 18:15:34 +02:00
|
|
|
if (command_line->HasSwitch(switches::kUseViews) &&
|
|
|
|
!command_line->HasSwitch("top-chrome-md")) {
|
|
|
|
// Use non-material mode on all platforms by default. Among other things
|
|
|
|
// this causes menu buttons to show hover state. See usage of
|
|
|
|
// MaterialDesignController::IsModeMaterial() in Chromium code.
|
|
|
|
command_line->AppendSwitchWithValue("top-chrome-md", "non-material");
|
|
|
|
}
|
|
|
|
|
2017-10-30 21:52:39 +01:00
|
|
|
if (!command_line->HasSwitch(switches::kCachePath) &&
|
|
|
|
!command_line->HasSwitch("disable-gpu-shader-disk-cache")) {
|
|
|
|
// Don't create a "GPUCache" directory when cache-path is unspecified.
|
|
|
|
command_line->AppendSwitch("disable-gpu-shader-disk-cache");
|
|
|
|
}
|
|
|
|
|
2020-08-29 00:39:23 +02:00
|
|
|
#if defined(OS_MAC)
|
2020-01-25 01:47:06 +01:00
|
|
|
// Disable the toolchain prompt on macOS.
|
|
|
|
command_line->AppendSwitch("use-mock-keychain");
|
|
|
|
#endif
|
|
|
|
|
2015-09-09 16:05:39 +02:00
|
|
|
DelegateSet::iterator it = delegates_.begin();
|
2023-01-02 23:59:03 +01:00
|
|
|
for (; it != delegates_.end(); ++it) {
|
2015-09-09 16:05:39 +02:00
|
|
|
(*it)->OnBeforeCommandLineProcessing(this, command_line);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2015-08-18 00:14:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 00:50:29 +02:00
|
|
|
void ClientAppBrowser::OnRegisterCustomPreferences(
|
|
|
|
cef_preferences_type_t type,
|
|
|
|
CefRawPtr<CefPreferenceRegistrar> registrar) {
|
2023-02-17 21:55:12 +01:00
|
|
|
for (auto& delegate : delegates_) {
|
|
|
|
delegate->OnRegisterCustomPreferences(this, type, registrar);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2022-10-26 00:50:29 +02:00
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
void ClientAppBrowser::OnContextInitialized() {
|
2023-02-17 21:55:12 +01:00
|
|
|
for (auto& delegate : delegates_) {
|
|
|
|
delegate->OnContextInitialized(this);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2015-01-31 05:41:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientAppBrowser::OnBeforeChildProcessLaunch(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefCommandLine> command_line) {
|
2023-02-17 21:55:12 +01:00
|
|
|
for (auto& delegate : delegates_) {
|
|
|
|
delegate->OnBeforeChildProcessLaunch(this, command_line);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2015-01-31 05:41:36 +01:00
|
|
|
}
|
|
|
|
|
2023-06-01 16:06:15 +02:00
|
|
|
void ClientAppBrowser::OnScheduleMessagePumpWork(int64_t delay) {
|
2016-05-04 20:00:03 +02:00
|
|
|
// Only used when `--external-message-pump` is passed via the command-line.
|
|
|
|
MainMessageLoopExternalPump* message_pump =
|
|
|
|
MainMessageLoopExternalPump::Get();
|
2023-01-02 23:59:03 +01:00
|
|
|
if (message_pump) {
|
2016-05-04 20:00:03 +02:00
|
|
|
message_pump->OnScheduleMessagePumpWork(delay);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2016-05-04 20:00:03 +02:00
|
|
|
}
|
|
|
|
|
2023-02-17 21:55:12 +01:00
|
|
|
CefRefPtr<CefClient> ClientAppBrowser::GetDefaultClient() {
|
|
|
|
for (auto& delegate : delegates_) {
|
|
|
|
if (auto client = delegate->GetDefaultClient(this)) {
|
|
|
|
return client;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-01-31 05:41:36 +01:00
|
|
|
} // namespace client
|