2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_client.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-08-04 09:13:05 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <shlobj.h>
|
|
|
|
#endif
|
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
2019-02-04 15:54:55 +00:00
|
|
|
#include "atom/app/manifests.h"
|
2016-03-31 14:21:18 +00:00
|
|
|
#include "atom/browser/api/atom_api_app.h"
|
2016-08-24 14:52:35 +00:00
|
|
|
#include "atom/browser/api/atom_api_protocol.h"
|
2019-04-23 21:39:21 +00:00
|
|
|
#include "atom/browser/api/atom_api_protocol_ns.h"
|
2018-03-20 04:54:47 +00:00
|
|
|
#include "atom/browser/api/atom_api_web_contents.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2018-09-15 15:42:43 +00:00
|
|
|
#include "atom/browser/atom_navigation_throttle.h"
|
2019-04-24 00:31:36 +00:00
|
|
|
#include "atom/browser/atom_paths.h"
|
2015-05-12 12:22:30 +00:00
|
|
|
#include "atom/browser/atom_quota_permission_context.h"
|
2015-09-30 02:56:42 +00:00
|
|
|
#include "atom/browser/atom_resource_dispatcher_host_delegate.h"
|
2014-10-08 03:55:14 +00:00
|
|
|
#include "atom/browser/atom_speech_recognition_manager_delegate.h"
|
2017-04-06 03:15:27 +00:00
|
|
|
#include "atom/browser/child_web_contents_tracker.h"
|
2018-11-08 14:51:51 +00:00
|
|
|
#include "atom/browser/font_defaults.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "atom/browser/io_thread.h"
|
2018-10-19 18:51:43 +00:00
|
|
|
#include "atom/browser/media/media_capture_devices_dispatcher.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2019-03-26 01:10:48 +00:00
|
|
|
#include "atom/browser/net/network_context_service.h"
|
|
|
|
#include "atom/browser/net/network_context_service_factory.h"
|
2019-05-22 01:43:37 +00:00
|
|
|
#include "atom/browser/net/proxying_url_loader_factory.h"
|
2018-10-17 18:01:11 +00:00
|
|
|
#include "atom/browser/notifications/notification_presenter.h"
|
|
|
|
#include "atom/browser/notifications/platform_notification_service.h"
|
2017-12-05 06:59:15 +00:00
|
|
|
#include "atom/browser/session_preferences.h"
|
2018-10-19 13:50:30 +00:00
|
|
|
#include "atom/browser/ui/devtools_manager_delegate.h"
|
2016-01-23 13:29:47 +00:00
|
|
|
#include "atom/browser/web_contents_permission_helper.h"
|
2015-09-04 17:12:32 +00:00
|
|
|
#include "atom/browser/web_contents_preferences.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/window_list.h"
|
2019-01-21 18:32:34 +00:00
|
|
|
#include "atom/common/application_info.h"
|
2014-10-25 12:52:42 +00:00
|
|
|
#include "atom/common/options_switches.h"
|
2018-07-21 15:05:21 +00:00
|
|
|
#include "atom/common/platform_util.h"
|
2014-10-24 10:44:15 +00:00
|
|
|
#include "base/command_line.h"
|
2018-03-16 02:05:51 +00:00
|
|
|
#include "base/environment.h"
|
2015-06-10 11:34:30 +00:00
|
|
|
#include "base/files/file_util.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "base/json/json_reader.h"
|
2018-10-23 08:45:41 +00:00
|
|
|
#include "base/lazy_instance.h"
|
2018-09-13 00:25:56 +00:00
|
|
|
#include "base/no_destructor.h"
|
2018-10-23 08:45:41 +00:00
|
|
|
#include "base/path_service.h"
|
2015-08-11 07:39:17 +00:00
|
|
|
#include "base/stl_util.h"
|
2015-06-26 02:48:36 +00:00
|
|
|
#include "base/strings/string_number_conversions.h"
|
2016-08-24 00:16:54 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2018-07-31 21:38:37 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "base/task/post_task.h"
|
2018-11-07 13:23:09 +00:00
|
|
|
#include "chrome/browser/browser_process.h"
|
2019-01-21 18:32:34 +00:00
|
|
|
#include "chrome/common/chrome_version.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "components/net_log/chrome_net_log.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "content/public/browser/browser_ppapi_host.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2015-06-03 20:57:06 +00:00
|
|
|
#include "content/public/browser/client_certificate_delegate.h"
|
2018-03-06 06:24:54 +00:00
|
|
|
#include "content/public/browser/render_frame_host.h"
|
2014-01-30 13:57:01 +00:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2014-03-06 03:07:04 +00:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2015-09-29 12:17:26 +00:00
|
|
|
#include "content/public/browser/resource_dispatcher_host.h"
|
2014-01-31 02:30:16 +00:00
|
|
|
#include "content/public/browser/site_instance.h"
|
2014-01-30 13:57:01 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2018-01-22 22:49:30 +00:00
|
|
|
#include "content/public/common/content_paths.h"
|
2017-07-07 22:14:25 +00:00
|
|
|
#include "content/public/common/content_switches.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "content/public/common/service_names.mojom.h"
|
2016-09-29 17:20:53 +00:00
|
|
|
#include "content/public/common/url_constants.h"
|
2014-10-11 11:11:34 +00:00
|
|
|
#include "content/public/common/web_preferences.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "electron/grit/electron_resources.h"
|
2018-07-21 15:05:21 +00:00
|
|
|
#include "net/base/escape.h"
|
2015-06-03 20:57:06 +00:00
|
|
|
#include "net/ssl/ssl_cert_request_info.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "ppapi/host/ppapi_host.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
2018-10-02 22:01:24 +00:00
|
|
|
#include "services/device/public/cpp/geolocation/location_provider.h"
|
2019-03-26 01:10:48 +00:00
|
|
|
#include "services/network/public/cpp/features.h"
|
2018-04-11 08:42:14 +00:00
|
|
|
#include "services/network/public/cpp/resource_request_body.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "services/proxy_resolver/public/mojom/proxy_resolver.mojom.h"
|
2014-05-29 07:21:15 +00:00
|
|
|
#include "ui/base/l10n/l10n_util.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
2015-09-04 17:33:13 +00:00
|
|
|
#include "v8/include/v8.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2018-04-12 08:48:50 +00:00
|
|
|
#if defined(USE_NSS_CERTS)
|
|
|
|
#include "net/ssl/client_cert_store_nss.h"
|
|
|
|
#elif defined(OS_WIN)
|
|
|
|
#include "net/ssl/client_cert_store_win.h"
|
|
|
|
#elif defined(OS_MACOSX)
|
|
|
|
#include "net/ssl/client_cert_store_mac.h"
|
2019-02-06 05:25:42 +00:00
|
|
|
#include "services/audio/public/mojom/constants.mojom.h"
|
|
|
|
#include "services/video_capture/public/mojom/constants.mojom.h"
|
2018-04-12 08:48:50 +00:00
|
|
|
#elif defined(USE_OPENSSL)
|
|
|
|
#include "net/ssl/client_cert_store.h"
|
|
|
|
#endif
|
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PEPPER_FLASH)
|
2018-06-20 00:44:24 +00:00
|
|
|
#include "chrome/browser/renderer_host/pepper/chrome_browser_pepper_host_factory.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PEPPER_FLASH)
|
2018-06-20 00:44:24 +00:00
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(OVERRIDE_LOCATION_PROVIDER)
|
2018-08-23 15:51:46 +00:00
|
|
|
#include "atom/browser/fake_location_provider.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(OVERRIDE_LOCATION_PROVIDER)
|
2018-08-23 15:51:46 +00:00
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
#if BUILDFLAG(ENABLE_TTS)
|
2019-01-10 00:44:44 +00:00
|
|
|
#include "chrome/browser/speech/tts_controller_delegate_impl.h"
|
2018-10-11 13:52:12 +00:00
|
|
|
#include "chrome/browser/speech/tts_message_filter.h"
|
|
|
|
#endif // BUILDFLAG(ENABLE_TTS)
|
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "chrome/browser/printing/printing_message_filter.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "chrome/services/printing/public/mojom/constants.mojom.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "components/services/pdf_compositor/public/interfaces/pdf_compositor.mojom.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
|
2018-03-14 07:55:59 +00:00
|
|
|
using content::BrowserThread;
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
namespace {
|
|
|
|
|
2015-05-11 06:40:40 +00:00
|
|
|
// Next navigation should not restart renderer process.
|
|
|
|
bool g_suppress_renderer_process_restart = false;
|
|
|
|
|
2018-04-06 07:22:52 +00:00
|
|
|
bool IsSameWebSite(content::BrowserContext* browser_context,
|
2019-01-22 15:10:36 +00:00
|
|
|
content::SiteInstance* site_instance,
|
2018-04-06 07:22:52 +00:00
|
|
|
const GURL& dest_url) {
|
2019-01-22 15:10:36 +00:00
|
|
|
return site_instance->IsSameSiteWithURL(dest_url) ||
|
|
|
|
// `IsSameSiteWithURL` doesn't seem to work for some URIs such as
|
|
|
|
// `file:`, handle these scenarios by comparing only the site as
|
|
|
|
// defined by `GetSiteForURL`.
|
|
|
|
(content::SiteInstance::GetSiteForURL(browser_context, dest_url) ==
|
|
|
|
site_instance->GetSiteURL());
|
2016-05-23 03:57:46 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 08:45:41 +00:00
|
|
|
AtomBrowserClient* g_browser_client = nullptr;
|
|
|
|
|
|
|
|
base::LazyInstance<std::string>::DestructorAtExit
|
|
|
|
g_io_thread_application_locale = LAZY_INSTANCE_INITIALIZER;
|
|
|
|
|
|
|
|
base::NoDestructor<std::string> g_application_locale;
|
|
|
|
|
|
|
|
void SetApplicationLocaleOnIOThread(const std::string& locale) {
|
|
|
|
DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
|
|
|
g_io_thread_application_locale.Get() = locale;
|
|
|
|
}
|
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
} // namespace
|
|
|
|
|
2015-05-11 06:40:40 +00:00
|
|
|
// static
|
|
|
|
void AtomBrowserClient::SuppressRendererProcessRestartForOnce() {
|
|
|
|
g_suppress_renderer_process_restart = true;
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:45:41 +00:00
|
|
|
AtomBrowserClient* AtomBrowserClient::Get() {
|
|
|
|
return g_browser_client;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void AtomBrowserClient::SetApplicationLocale(const std::string& locale) {
|
|
|
|
if (!BrowserThread::IsThreadInitialized(BrowserThread::IO) ||
|
2019-01-12 01:00:43 +00:00
|
|
|
!base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::IO},
|
2018-10-23 08:45:41 +00:00
|
|
|
base::BindOnce(&SetApplicationLocaleOnIOThread, locale))) {
|
|
|
|
g_io_thread_application_locale.Get() = locale;
|
|
|
|
}
|
|
|
|
*g_application_locale = locale;
|
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserClient::AtomBrowserClient() {
|
|
|
|
DCHECK(!g_browser_client);
|
|
|
|
g_browser_client = this;
|
|
|
|
}
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2018-10-23 08:45:41 +00:00
|
|
|
AtomBrowserClient::~AtomBrowserClient() {
|
|
|
|
DCHECK(g_browser_client);
|
|
|
|
g_browser_client = nullptr;
|
|
|
|
}
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2016-05-27 00:20:46 +00:00
|
|
|
content::WebContents* AtomBrowserClient::GetWebContentsFromProcessID(
|
|
|
|
int process_id) {
|
2017-07-10 22:48:12 +00:00
|
|
|
// If the process is a pending process, we should use the web contents
|
2018-12-05 08:03:39 +00:00
|
|
|
// for the frame host passed into RegisterPendingProcess.
|
2016-11-30 07:30:03 +00:00
|
|
|
if (base::ContainsKey(pending_processes_, process_id))
|
2017-07-10 22:48:12 +00:00
|
|
|
return pending_processes_[process_id];
|
2016-05-27 00:20:46 +00:00
|
|
|
|
|
|
|
// Certain render process will be created with no associated render view,
|
|
|
|
// for example: ServiceWorker.
|
|
|
|
return WebContentsPreferences::GetWebContentsFromProcessID(process_id);
|
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::ShouldForceNewSiteInstance(
|
|
|
|
content::RenderFrameHost* current_rfh,
|
|
|
|
content::RenderFrameHost* speculative_rfh,
|
2016-08-15 10:59:08 +00:00
|
|
|
content::BrowserContext* browser_context,
|
2018-12-05 08:03:39 +00:00
|
|
|
const GURL& url,
|
|
|
|
bool has_response_started) const {
|
2016-08-15 10:59:08 +00:00
|
|
|
if (url.SchemeIs(url::kJavaScriptScheme))
|
|
|
|
// "javacript:" scheme should always use same SiteInstance
|
|
|
|
return false;
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
content::SiteInstance* current_instance = current_rfh->GetSiteInstance();
|
|
|
|
content::SiteInstance* speculative_instance =
|
|
|
|
speculative_rfh ? speculative_rfh->GetSiteInstance() : nullptr;
|
2017-03-19 08:47:26 +00:00
|
|
|
int process_id = current_instance->GetProcess()->GetID();
|
2018-12-05 08:03:39 +00:00
|
|
|
if (NavigationWasRedirectedCrossSite(browser_context, current_instance,
|
|
|
|
speculative_instance, url,
|
|
|
|
has_response_started)) {
|
|
|
|
// Navigation was redirected. We can't force the current, speculative or a
|
|
|
|
// new unrelated site instance to be used. Delegate to the content layer.
|
|
|
|
return false;
|
|
|
|
} else if (IsRendererSandboxed(process_id)) {
|
|
|
|
// Renderer is sandboxed, delegate the decision to the content layer for all
|
|
|
|
// origins.
|
|
|
|
return false;
|
|
|
|
} else if (!RendererUsesNativeWindowOpen(process_id)) {
|
|
|
|
// non-sandboxed renderers without native window.open should always create
|
|
|
|
// a new SiteInstance
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
auto* web_contents = content::WebContents::FromRenderFrameHost(current_rfh);
|
2018-10-22 18:02:25 +00:00
|
|
|
if (!ChildWebContentsTracker::FromWebContents(web_contents)) {
|
2017-04-12 03:25:56 +00:00
|
|
|
// Root WebContents should always create new process to make sure
|
|
|
|
// native addons are loaded correctly after reload / navigation.
|
|
|
|
// (Non-root WebContents opened by window.open() should try to
|
|
|
|
// reuse process to allow synchronous cross-window scripting.)
|
2017-04-05 08:51:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2016-08-15 10:59:08 +00:00
|
|
|
|
|
|
|
// Create new a SiteInstance if navigating to a different site.
|
2019-01-22 15:10:36 +00:00
|
|
|
return !IsSameWebSite(browser_context, current_instance, url);
|
2016-08-15 10:59:08 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::NavigationWasRedirectedCrossSite(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::SiteInstance* current_instance,
|
|
|
|
content::SiteInstance* speculative_instance,
|
|
|
|
const GURL& dest_url,
|
|
|
|
bool has_response_started) const {
|
|
|
|
bool navigation_was_redirected = false;
|
|
|
|
if (has_response_started) {
|
2019-01-22 15:10:36 +00:00
|
|
|
navigation_was_redirected =
|
|
|
|
!IsSameWebSite(browser_context, current_instance, dest_url);
|
2018-12-05 08:03:39 +00:00
|
|
|
} else {
|
|
|
|
navigation_was_redirected =
|
|
|
|
speculative_instance &&
|
2019-01-22 15:10:36 +00:00
|
|
|
!IsSameWebSite(browser_context, speculative_instance, dest_url);
|
2018-12-05 08:03:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return navigation_was_redirected;
|
|
|
|
}
|
|
|
|
|
2017-03-19 09:24:05 +00:00
|
|
|
void AtomBrowserClient::AddProcessPreferences(
|
2018-04-18 01:55:30 +00:00
|
|
|
int process_id,
|
|
|
|
AtomBrowserClient::ProcessPreferences prefs) {
|
2018-11-21 20:10:05 +00:00
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
2017-03-19 08:25:45 +00:00
|
|
|
process_preferences_[process_id] = prefs;
|
2016-08-15 10:59:08 +00:00
|
|
|
}
|
|
|
|
|
2017-03-19 08:25:45 +00:00
|
|
|
void AtomBrowserClient::RemoveProcessPreferences(int process_id) {
|
2018-11-21 20:10:05 +00:00
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
2017-03-19 08:25:45 +00:00
|
|
|
process_preferences_.erase(process_id);
|
2016-08-15 10:59:08 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::IsProcessObserved(int process_id) const {
|
2018-11-21 20:10:05 +00:00
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
2018-03-09 07:13:51 +00:00
|
|
|
return process_preferences_.find(process_id) != process_preferences_.end();
|
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::IsRendererSandboxed(int process_id) const {
|
2018-11-21 20:10:05 +00:00
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
2017-03-19 08:25:45 +00:00
|
|
|
auto it = process_preferences_.find(process_id);
|
|
|
|
return it != process_preferences_.end() && it->second.sandbox;
|
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::RendererUsesNativeWindowOpen(int process_id) const {
|
2018-11-21 20:10:05 +00:00
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
2017-03-19 08:25:45 +00:00
|
|
|
auto it = process_preferences_.find(process_id);
|
|
|
|
return it != process_preferences_.end() && it->second.native_window_open;
|
2016-08-15 10:59:08 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::RendererDisablesPopups(int process_id) const {
|
2018-11-21 20:10:05 +00:00
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
2017-05-23 22:59:17 +00:00
|
|
|
auto it = process_preferences_.find(process_id);
|
|
|
|
return it != process_preferences_.end() && it->second.disable_popups;
|
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
std::string AtomBrowserClient::GetAffinityPreference(
|
|
|
|
content::RenderFrameHost* rfh) const {
|
|
|
|
auto* web_contents = content::WebContents::FromRenderFrameHost(rfh);
|
|
|
|
auto* web_preferences = WebContentsPreferences::From(web_contents);
|
|
|
|
std::string affinity;
|
|
|
|
if (web_preferences &&
|
|
|
|
web_preferences->GetPreference("affinity", &affinity) &&
|
|
|
|
!affinity.empty()) {
|
|
|
|
affinity = base::ToLowerASCII(affinity);
|
|
|
|
}
|
|
|
|
|
|
|
|
return affinity;
|
|
|
|
}
|
|
|
|
|
|
|
|
content::SiteInstance* AtomBrowserClient::GetSiteInstanceFromAffinity(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
const GURL& url,
|
|
|
|
content::RenderFrameHost* rfh) const {
|
|
|
|
std::string affinity = GetAffinityPreference(rfh);
|
|
|
|
if (!affinity.empty()) {
|
|
|
|
auto iter = site_per_affinities_.find(affinity);
|
|
|
|
GURL dest_site = content::SiteInstance::GetSiteForURL(browser_context, url);
|
|
|
|
if (iter != site_per_affinities_.end() &&
|
2019-01-22 15:10:36 +00:00
|
|
|
IsSameWebSite(browser_context, iter->second, dest_site)) {
|
2018-12-05 08:03:39 +00:00
|
|
|
return iter->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomBrowserClient::ConsiderSiteInstanceForAffinity(
|
|
|
|
content::RenderFrameHost* rfh,
|
|
|
|
content::SiteInstance* site_instance) {
|
|
|
|
std::string affinity = GetAffinityPreference(rfh);
|
|
|
|
if (!affinity.empty()) {
|
|
|
|
site_per_affinities_[affinity] = site_instance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:19:43 +00:00
|
|
|
void AtomBrowserClient::RenderProcessWillLaunch(
|
2018-04-11 09:26:56 +00:00
|
|
|
content::RenderProcessHost* host,
|
2018-04-12 08:48:50 +00:00
|
|
|
service_manager::mojom::ServiceRequest* service_request) {
|
2018-03-09 07:13:51 +00:00
|
|
|
// When a render process is crashed, it might be reused.
|
2015-06-26 02:48:36 +00:00
|
|
|
int process_id = host->GetID();
|
2018-03-09 07:13:51 +00:00
|
|
|
if (IsProcessObserved(process_id))
|
|
|
|
return;
|
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2018-11-09 03:42:34 +00:00
|
|
|
host->AddFilter(new printing::PrintingMessageFilter(
|
|
|
|
process_id, host->GetBrowserContext()));
|
2018-10-13 01:57:04 +00:00
|
|
|
#endif
|
2018-10-11 13:52:12 +00:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_TTS)
|
|
|
|
host->AddFilter(new TtsMessageFilter(host->GetBrowserContext()));
|
|
|
|
#endif
|
2016-08-15 10:59:08 +00:00
|
|
|
|
2018-03-08 07:36:21 +00:00
|
|
|
ProcessPreferences prefs;
|
2018-04-18 01:55:30 +00:00
|
|
|
auto* web_preferences =
|
|
|
|
WebContentsPreferences::From(GetWebContentsFromProcessID(process_id));
|
2018-03-08 07:36:21 +00:00
|
|
|
if (web_preferences) {
|
2018-05-29 08:09:51 +00:00
|
|
|
prefs.sandbox = web_preferences->IsEnabled(options::kSandbox);
|
|
|
|
prefs.native_window_open =
|
|
|
|
web_preferences->IsEnabled(options::kNativeWindowOpen);
|
2018-03-08 07:36:21 +00:00
|
|
|
prefs.disable_popups = web_preferences->IsEnabled("disablePopups");
|
2018-11-21 20:10:05 +00:00
|
|
|
prefs.web_security = web_preferences->IsEnabled(options::kWebSecurity,
|
|
|
|
true /* default value */);
|
2018-03-08 07:36:21 +00:00
|
|
|
}
|
|
|
|
AddProcessPreferences(host->GetID(), prefs);
|
2017-03-19 08:25:45 +00:00
|
|
|
// ensure the ProcessPreferences is removed later
|
|
|
|
host->AddObserver(this);
|
2014-08-21 13:19:43 +00:00
|
|
|
}
|
|
|
|
|
2014-10-08 03:55:14 +00:00
|
|
|
content::SpeechRecognitionManagerDelegate*
|
2018-04-18 01:55:30 +00:00
|
|
|
AtomBrowserClient::CreateSpeechRecognitionManagerDelegate() {
|
2014-10-08 03:55:14 +00:00
|
|
|
return new AtomSpeechRecognitionManagerDelegate;
|
|
|
|
}
|
|
|
|
|
2019-01-10 00:44:44 +00:00
|
|
|
content::TtsControllerDelegate* AtomBrowserClient::GetTtsControllerDelegate() {
|
|
|
|
#if BUILDFLAG(ENABLE_TTS)
|
|
|
|
return TtsControllerDelegateImpl::GetInstance();
|
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void AtomBrowserClient::OverrideWebkitPrefs(content::RenderViewHost* host,
|
|
|
|
content::WebPreferences* prefs) {
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->javascript_enabled = true;
|
2014-03-04 13:23:18 +00:00
|
|
|
prefs->web_security_enabled = true;
|
2014-10-26 06:05:54 +00:00
|
|
|
prefs->plugins_enabled = true;
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->dom_paste_enabled = true;
|
|
|
|
prefs->allow_scripts_to_close_windows = true;
|
|
|
|
prefs->javascript_can_access_clipboard = true;
|
|
|
|
prefs->local_storage_enabled = true;
|
|
|
|
prefs->databases_enabled = true;
|
|
|
|
prefs->application_cache_enabled = true;
|
|
|
|
prefs->allow_universal_access_from_file_urls = true;
|
|
|
|
prefs->allow_file_access_from_file_urls = true;
|
2017-12-18 01:47:10 +00:00
|
|
|
prefs->webgl1_enabled = true;
|
|
|
|
prefs->webgl2_enabled = true;
|
2015-01-07 04:53:25 +00:00
|
|
|
prefs->allow_running_insecure_content = false;
|
2018-04-26 15:27:35 +00:00
|
|
|
prefs->default_minimum_page_scale_factor = 1.f;
|
|
|
|
prefs->default_maximum_page_scale_factor = 1.f;
|
2018-04-26 15:23:27 +00:00
|
|
|
prefs->navigate_on_drag_drop = false;
|
2014-03-06 03:07:04 +00:00
|
|
|
|
2018-11-08 14:51:51 +00:00
|
|
|
SetFontDefaults(prefs);
|
|
|
|
|
2014-12-18 02:13:39 +00:00
|
|
|
// Custom preferences of guest page.
|
2018-03-08 08:01:54 +00:00
|
|
|
auto* web_contents = content::WebContents::FromRenderViewHost(host);
|
|
|
|
auto* web_preferences = WebContentsPreferences::From(web_contents);
|
|
|
|
if (web_preferences)
|
|
|
|
web_preferences->OverrideWebkitPrefs(prefs);
|
2013-04-12 12:48:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
content::ContentBrowserClient::SiteInstanceForNavigationType
|
|
|
|
AtomBrowserClient::ShouldOverrideSiteInstanceForNavigation(
|
|
|
|
content::RenderFrameHost* current_rfh,
|
|
|
|
content::RenderFrameHost* speculative_rfh,
|
2015-04-26 04:28:27 +00:00
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
const GURL& url,
|
2018-12-05 08:03:39 +00:00
|
|
|
bool has_response_started,
|
|
|
|
content::SiteInstance** affinity_site_instance) const {
|
2017-04-04 04:48:17 +00:00
|
|
|
if (g_suppress_renderer_process_restart) {
|
|
|
|
g_suppress_renderer_process_restart = false;
|
2018-12-05 08:03:39 +00:00
|
|
|
return SiteInstanceForNavigationType::ASK_CHROMIUM;
|
2018-11-12 21:01:43 +00:00
|
|
|
}
|
2017-12-13 10:57:41 +00:00
|
|
|
|
2018-11-20 20:28:26 +00:00
|
|
|
// Do we have an affinity site to manage ?
|
2018-12-05 08:03:39 +00:00
|
|
|
content::SiteInstance* site_instance_from_affinity =
|
|
|
|
GetSiteInstanceFromAffinity(browser_context, url, current_rfh);
|
|
|
|
if (site_instance_from_affinity) {
|
|
|
|
*affinity_site_instance = site_instance_from_affinity;
|
|
|
|
return SiteInstanceForNavigationType::FORCE_AFFINITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ShouldForceNewSiteInstance(current_rfh, speculative_rfh, browser_context,
|
|
|
|
url, has_response_started)) {
|
|
|
|
return SiteInstanceForNavigationType::ASK_CHROMIUM;
|
|
|
|
}
|
2018-11-20 20:28:26 +00:00
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
// ShouldOverrideSiteInstanceForNavigation will be called more than once
|
|
|
|
// during a navigation (currently twice, on request and when it's about
|
|
|
|
// to commit in the renderer), look at
|
|
|
|
// RenderFrameHostManager::GetFrameHostForNavigation.
|
|
|
|
// In the default mode we should reuse the same site instance until the
|
|
|
|
// request commits otherwise it will get destroyed. Currently there is no
|
|
|
|
// unique lifetime tracker for a navigation request during site instance
|
|
|
|
// creation. We check for the state of the request, which should be one of
|
|
|
|
// (WAITING_FOR_RENDERER_RESPONSE, STARTED, RESPONSE_STARTED, FAILED) along
|
|
|
|
// with the availability of a speculative render frame host.
|
|
|
|
if (has_response_started) {
|
|
|
|
return SiteInstanceForNavigationType::FORCE_CURRENT;
|
2018-11-20 20:28:26 +00:00
|
|
|
}
|
2018-12-05 08:03:39 +00:00
|
|
|
|
|
|
|
return SiteInstanceForNavigationType::FORCE_CANDIDATE_OR_NEW;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomBrowserClient::RegisterPendingSiteInstance(
|
|
|
|
content::RenderFrameHost* rfh,
|
|
|
|
content::SiteInstance* pending_site_instance) {
|
|
|
|
// Do we have an affinity site to manage?
|
|
|
|
ConsiderSiteInstanceForAffinity(rfh, pending_site_instance);
|
|
|
|
|
|
|
|
// Remember the original web contents for the pending renderer process.
|
|
|
|
auto* web_contents = content::WebContents::FromRenderFrameHost(rfh);
|
|
|
|
auto* pending_process = pending_site_instance->GetProcess();
|
|
|
|
pending_processes_[pending_process->GetID()] = web_contents;
|
2017-12-13 10:57:41 +00:00
|
|
|
}
|
2016-05-23 03:57:46 +00:00
|
|
|
|
2014-01-30 13:57:01 +00:00
|
|
|
void AtomBrowserClient::AppendExtraCommandLineSwitches(
|
2014-06-28 14:33:00 +00:00
|
|
|
base::CommandLine* command_line,
|
2015-06-03 05:45:06 +00:00
|
|
|
int process_id) {
|
2018-01-22 22:49:30 +00:00
|
|
|
// Make sure we're about to launch a known executable
|
2018-01-23 15:25:01 +00:00
|
|
|
{
|
|
|
|
base::FilePath child_path;
|
2018-09-15 00:09:42 +00:00
|
|
|
base::PathService::Get(content::CHILD_PROCESS_EXE, &child_path);
|
2018-01-23 15:25:01 +00:00
|
|
|
|
|
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
|
|
|
CHECK(base::MakeAbsoluteFilePath(command_line->GetProgram()) == child_path);
|
|
|
|
}
|
2018-01-22 22:49:30 +00:00
|
|
|
|
2017-07-07 22:14:25 +00:00
|
|
|
std::string process_type =
|
|
|
|
command_line->GetSwitchValueASCII(::switches::kProcessType);
|
|
|
|
if (process_type != ::switches::kRendererProcess)
|
2015-04-26 09:26:25 +00:00
|
|
|
return;
|
|
|
|
|
2016-06-08 06:46:50 +00:00
|
|
|
// Copy following switches to child process.
|
2019-01-29 07:11:01 +00:00
|
|
|
static const char* const kCommonSwitchNames[] = {
|
|
|
|
switches::kStandardSchemes, switches::kEnableSandbox,
|
|
|
|
switches::kSecureSchemes, switches::kBypassCSPSchemes,
|
|
|
|
switches::kCORSSchemes, switches::kFetchSchemes,
|
|
|
|
switches::kServiceWorkerSchemes};
|
2018-04-18 01:55:30 +00:00
|
|
|
command_line->CopySwitchesFrom(*base::CommandLine::ForCurrentProcess(),
|
|
|
|
kCommonSwitchNames,
|
2019-01-21 18:26:33 +00:00
|
|
|
base::size(kCommonSwitchNames));
|
2016-06-08 06:46:50 +00:00
|
|
|
|
2015-08-04 09:13:05 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Append --app-user-model-id.
|
|
|
|
PWSTR current_app_id;
|
|
|
|
if (SUCCEEDED(GetCurrentProcessExplicitAppUserModelID(¤t_app_id))) {
|
|
|
|
command_line->AppendSwitchNative(switches::kAppUserModelId, current_app_id);
|
|
|
|
CoTaskMemFree(current_app_id);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-04 00:36:01 +00:00
|
|
|
if (delegate_) {
|
|
|
|
auto app_path = static_cast<api::App*>(delegate_)->GetAppPath();
|
2017-04-13 01:59:12 +00:00
|
|
|
command_line->AppendSwitchPath(switches::kAppPath, app_path);
|
2017-04-04 00:36:01 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 00:20:46 +00:00
|
|
|
content::WebContents* web_contents = GetWebContentsFromProcessID(process_id);
|
2017-12-05 06:59:15 +00:00
|
|
|
if (web_contents) {
|
2019-05-17 22:37:09 +00:00
|
|
|
if (web_contents->GetVisibleURL().SchemeIs("devtools")) {
|
2019-02-11 20:42:37 +00:00
|
|
|
command_line->AppendSwitch(switches::kDisableRemoteModule);
|
2019-01-22 18:44:28 +00:00
|
|
|
}
|
2018-03-08 08:01:54 +00:00
|
|
|
auto* web_preferences = WebContentsPreferences::From(web_contents);
|
|
|
|
if (web_preferences)
|
|
|
|
web_preferences->AppendCommandLineSwitches(command_line);
|
2017-12-05 06:59:15 +00:00
|
|
|
SessionPreferences::AppendExtraCommandLineSwitches(
|
|
|
|
web_contents->GetBrowserContext(), command_line);
|
|
|
|
}
|
2014-01-30 13:57:01 +00:00
|
|
|
}
|
|
|
|
|
2019-02-06 05:25:42 +00:00
|
|
|
void AtomBrowserClient::AdjustUtilityServiceProcessCommandLine(
|
|
|
|
const service_manager::Identity& identity,
|
|
|
|
base::CommandLine* command_line) {
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
if (identity.name() == video_capture::mojom::kServiceName ||
|
|
|
|
identity.name() == audio::mojom::kServiceName)
|
|
|
|
command_line->AppendSwitch(::switches::kMessageLoopTypeUi);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void AtomBrowserClient::DidCreatePpapiPlugin(content::BrowserPpapiHost* host) {
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PEPPER_FLASH)
|
2015-07-02 17:54:43 +00:00
|
|
|
host->GetPpapiHost()->AddHostFactoryFilter(
|
2018-06-20 00:44:24 +00:00
|
|
|
base::WrapUnique(new ChromeBrowserPepperHostFactory(host)));
|
|
|
|
#endif
|
2015-04-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:49:44 +00:00
|
|
|
// attempt to get api key from env
|
2018-03-14 07:55:59 +00:00
|
|
|
std::string AtomBrowserClient::GetGeolocationApiKey() {
|
|
|
|
std::unique_ptr<base::Environment> env(base::Environment::Create());
|
|
|
|
std::string api_key;
|
2018-10-31 14:49:44 +00:00
|
|
|
env->GetVar("GOOGLE_API_KEY", &api_key);
|
2018-03-14 07:55:59 +00:00
|
|
|
return api_key;
|
|
|
|
}
|
|
|
|
|
2019-04-20 17:20:37 +00:00
|
|
|
scoped_refptr<content::QuotaPermissionContext>
|
2018-04-18 01:55:30 +00:00
|
|
|
AtomBrowserClient::CreateQuotaPermissionContext() {
|
2015-05-12 12:22:30 +00:00
|
|
|
return new AtomQuotaPermissionContext;
|
|
|
|
}
|
|
|
|
|
2019-01-09 20:16:33 +00:00
|
|
|
content::GeneratedCodeCacheSettings
|
|
|
|
AtomBrowserClient::GetGeneratedCodeCacheSettings(
|
|
|
|
content::BrowserContext* context) {
|
|
|
|
// TODO(deepak1556): Use platform cache directory.
|
|
|
|
base::FilePath cache_path = context->GetPath();
|
|
|
|
// If we pass 0 for size, disk_cache will pick a default size using the
|
|
|
|
// heuristics based on available disk size. These are implemented in
|
|
|
|
// disk_cache::PreferredCacheSize in net/disk_cache/cache_util.cc.
|
|
|
|
return content::GeneratedCodeCacheSettings(true, 0, cache_path);
|
|
|
|
}
|
|
|
|
|
2015-11-18 02:39:25 +00:00
|
|
|
void AtomBrowserClient::AllowCertificateError(
|
2016-03-08 14:28:53 +00:00
|
|
|
content::WebContents* web_contents,
|
2015-11-18 02:39:25 +00:00
|
|
|
int cert_error,
|
|
|
|
const net::SSLInfo& ssl_info,
|
|
|
|
const GURL& request_url,
|
2019-05-13 21:24:39 +00:00
|
|
|
bool is_main_frame_request,
|
2015-11-18 02:39:25 +00:00
|
|
|
bool strict_enforcement,
|
|
|
|
bool expired_previous_decision,
|
2016-11-30 07:30:03 +00:00
|
|
|
const base::Callback<void(content::CertificateRequestResultType)>&
|
|
|
|
callback) {
|
2015-11-18 02:39:25 +00:00
|
|
|
if (delegate_) {
|
|
|
|
delegate_->AllowCertificateError(
|
2019-05-13 21:24:39 +00:00
|
|
|
web_contents, cert_error, ssl_info, request_url, is_main_frame_request,
|
2018-04-18 01:55:30 +00:00
|
|
|
strict_enforcement, expired_previous_decision, callback);
|
2015-11-18 02:39:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-03 20:57:06 +00:00
|
|
|
void AtomBrowserClient::SelectClientCertificate(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
net::SSLCertRequestInfo* cert_request_info,
|
2017-08-20 21:35:04 +00:00
|
|
|
net::ClientCertIdentityList client_certs,
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<content::ClientCertificateDelegate> delegate) {
|
2017-08-04 21:11:01 +00:00
|
|
|
if (!client_certs.empty() && delegate_) {
|
|
|
|
delegate_->SelectClientCertificate(web_contents, cert_request_info,
|
|
|
|
std::move(client_certs),
|
|
|
|
std::move(delegate));
|
2015-11-18 02:07:03 +00:00
|
|
|
}
|
2015-06-03 20:57:06 +00:00
|
|
|
}
|
|
|
|
|
2015-09-29 12:17:26 +00:00
|
|
|
void AtomBrowserClient::ResourceDispatcherHostCreated() {
|
|
|
|
resource_dispatcher_host_delegate_.reset(
|
|
|
|
new AtomResourceDispatcherHostDelegate);
|
|
|
|
content::ResourceDispatcherHost::Get()->SetDelegate(
|
|
|
|
resource_dispatcher_host_delegate_.get());
|
|
|
|
}
|
|
|
|
|
2016-03-31 00:58:23 +00:00
|
|
|
bool AtomBrowserClient::CanCreateWindow(
|
2017-08-04 21:38:06 +00:00
|
|
|
content::RenderFrameHost* opener,
|
2016-03-31 00:58:23 +00:00
|
|
|
const GURL& opener_url,
|
|
|
|
const GURL& opener_top_level_frame_url,
|
2019-01-21 18:14:57 +00:00
|
|
|
const url::Origin& source_origin,
|
2017-04-04 04:50:44 +00:00
|
|
|
content::mojom::WindowContainerType container_type,
|
2016-03-31 00:58:23 +00:00
|
|
|
const GURL& target_url,
|
|
|
|
const content::Referrer& referrer,
|
2016-11-30 07:30:03 +00:00
|
|
|
const std::string& frame_name,
|
2016-03-31 00:58:23 +00:00
|
|
|
WindowOpenDisposition disposition,
|
2017-04-04 04:50:44 +00:00
|
|
|
const blink::mojom::WindowFeatures& features,
|
2017-01-23 08:44:42 +00:00
|
|
|
const std::vector<std::string>& additional_features,
|
2018-04-11 08:42:14 +00:00
|
|
|
const scoped_refptr<network::ResourceRequestBody>& body,
|
2016-03-31 00:58:23 +00:00
|
|
|
bool user_gesture,
|
|
|
|
bool opener_suppressed,
|
|
|
|
bool* no_javascript_access) {
|
2018-03-14 07:55:59 +00:00
|
|
|
DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
2016-03-31 14:21:18 +00:00
|
|
|
|
2017-08-04 21:38:06 +00:00
|
|
|
int opener_render_process_id = opener->GetProcess()->GetID();
|
|
|
|
|
2017-05-23 22:59:17 +00:00
|
|
|
if (RendererUsesNativeWindowOpen(opener_render_process_id)) {
|
|
|
|
if (RendererDisablesPopups(opener_render_process_id)) {
|
|
|
|
// <webview> without allowpopups attribute should return
|
|
|
|
// null from window.open calls
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
*no_javascript_access = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-31 00:58:23 +00:00
|
|
|
if (delegate_) {
|
2017-12-07 04:12:38 +00:00
|
|
|
return delegate_->CanCreateWindow(
|
|
|
|
opener, opener_url, opener_top_level_frame_url, source_origin,
|
|
|
|
container_type, target_url, referrer, frame_name, disposition, features,
|
|
|
|
additional_features, body, user_gesture, opener_suppressed,
|
|
|
|
no_javascript_access);
|
2016-03-31 00:58:23 +00:00
|
|
|
}
|
2016-03-31 14:21:18 +00:00
|
|
|
|
|
|
|
return false;
|
2016-03-31 00:58:23 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 00:16:54 +00:00
|
|
|
void AtomBrowserClient::GetAdditionalAllowedSchemesForFileSystem(
|
|
|
|
std::vector<std::string>* additional_schemes) {
|
2016-08-24 14:52:35 +00:00
|
|
|
auto schemes_list = api::GetStandardSchemes();
|
|
|
|
if (!schemes_list.empty())
|
2018-04-18 01:55:30 +00:00
|
|
|
additional_schemes->insert(additional_schemes->end(), schemes_list.begin(),
|
2016-08-24 00:16:54 +00:00
|
|
|
schemes_list.end());
|
2016-09-29 17:20:53 +00:00
|
|
|
additional_schemes->push_back(content::kChromeDevToolsScheme);
|
2016-08-24 00:16:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
void AtomBrowserClient::GetAdditionalWebUISchemes(
|
|
|
|
std::vector<std::string>* additional_schemes) {
|
|
|
|
additional_schemes->push_back(content::kChromeDevToolsScheme);
|
|
|
|
}
|
|
|
|
|
2018-02-13 06:57:54 +00:00
|
|
|
void AtomBrowserClient::SiteInstanceDeleting(
|
|
|
|
content::SiteInstance* site_instance) {
|
|
|
|
// We are storing weak_ptr, is it fundamental to maintain the map up-to-date
|
|
|
|
// when an instance is destroyed.
|
2018-12-05 08:03:39 +00:00
|
|
|
for (auto iter = site_per_affinities_.begin();
|
|
|
|
iter != site_per_affinities_.end(); ++iter) {
|
2018-02-13 06:57:54 +00:00
|
|
|
if (iter->second == site_instance) {
|
2018-12-05 08:03:39 +00:00
|
|
|
site_per_affinities_.erase(iter);
|
2018-02-13 06:57:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-12 08:48:50 +00:00
|
|
|
std::unique_ptr<net::ClientCertStore> AtomBrowserClient::CreateClientCertStore(
|
|
|
|
content::ResourceContext* resource_context) {
|
|
|
|
#if defined(USE_NSS_CERTS)
|
2018-06-19 08:15:54 +00:00
|
|
|
return std::make_unique<net::ClientCertStoreNSS>(
|
|
|
|
net::ClientCertStoreNSS::PasswordDelegateFactory());
|
2018-04-12 08:48:50 +00:00
|
|
|
#elif defined(OS_WIN)
|
2018-06-19 08:15:54 +00:00
|
|
|
return std::make_unique<net::ClientCertStoreWin>();
|
2018-04-12 08:48:50 +00:00
|
|
|
#elif defined(OS_MACOSX)
|
2018-06-19 08:15:54 +00:00
|
|
|
return std::make_unique<net::ClientCertStoreMac>();
|
2018-04-12 08:48:50 +00:00
|
|
|
#elif defined(USE_OPENSSL)
|
|
|
|
return std::unique_ptr<net::ClientCertStore>();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-08-23 15:51:46 +00:00
|
|
|
std::unique_ptr<device::LocationProvider>
|
|
|
|
AtomBrowserClient::OverrideSystemLocationProvider() {
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(OVERRIDE_LOCATION_PROVIDER)
|
2018-08-23 15:51:46 +00:00
|
|
|
return std::make_unique<FakeLocationProvider>();
|
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
network::mojom::NetworkContextPtr AtomBrowserClient::CreateNetworkContext(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
bool /*in_memory*/,
|
|
|
|
const base::FilePath& /*relative_partition_path*/) {
|
|
|
|
if (!browser_context)
|
|
|
|
return nullptr;
|
2019-03-26 01:10:48 +00:00
|
|
|
|
|
|
|
if (base::FeatureList::IsEnabled(network::features::kNetworkService)) {
|
|
|
|
return NetworkContextServiceFactory::GetForContext(browser_context)
|
|
|
|
->CreateNetworkContext();
|
|
|
|
} else {
|
|
|
|
return static_cast<AtomBrowserContext*>(browser_context)
|
|
|
|
->GetNetworkContext();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
network::mojom::NetworkContext* AtomBrowserClient::GetSystemNetworkContext() {
|
|
|
|
DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
|
|
|
DCHECK(g_browser_process->system_network_context_manager());
|
|
|
|
return g_browser_process->system_network_context_manager()->GetContext();
|
2018-10-04 18:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AtomBrowserClient::RegisterOutOfProcessServices(
|
|
|
|
OutOfProcessServiceMap* services) {
|
|
|
|
(*services)[proxy_resolver::mojom::kProxyResolverServiceName] =
|
2018-10-04 22:56:04 +00:00
|
|
|
base::BindRepeating(&l10n_util::GetStringUTF16,
|
|
|
|
IDS_UTILITY_PROCESS_PROXY_RESOLVER_NAME);
|
2018-10-13 01:57:04 +00:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2018-11-09 03:42:34 +00:00
|
|
|
(*services)[printing::mojom::kServiceName] =
|
|
|
|
base::BindRepeating(&l10n_util::GetStringUTF16,
|
|
|
|
IDS_UTILITY_PROCESS_PDF_COMPOSITOR_SERVICE_NAME);
|
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
(*services)[printing::mojom::kChromePrintingServiceName] =
|
|
|
|
base::BindRepeating(&l10n_util::GetStringUTF16,
|
|
|
|
IDS_UTILITY_PROCESS_PRINTING_SERVICE_NAME);
|
|
|
|
#endif
|
2018-10-04 18:08:56 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 18:20:22 +00:00
|
|
|
base::Optional<service_manager::Manifest>
|
|
|
|
AtomBrowserClient::GetServiceManifestOverlay(base::StringPiece name) {
|
2019-05-28 20:18:10 +00:00
|
|
|
if (name == content::mojom::kBrowserServiceName)
|
2019-02-04 15:54:55 +00:00
|
|
|
return GetElectronContentBrowserOverlayManifest();
|
|
|
|
return base::nullopt;
|
2018-10-04 18:08:56 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 20:18:10 +00:00
|
|
|
std::vector<service_manager::Manifest>
|
|
|
|
AtomBrowserClient::GetExtraServiceManifests() {
|
|
|
|
return GetElectronBuiltinServiceManifests();
|
|
|
|
}
|
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
net::NetLog* AtomBrowserClient::GetNetLog() {
|
2018-11-07 13:23:09 +00:00
|
|
|
return g_browser_process->net_log();
|
2018-10-04 18:08:56 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 08:45:41 +00:00
|
|
|
content::BrowserMainParts* AtomBrowserClient::CreateBrowserMainParts(
|
2018-10-04 18:08:56 +00:00
|
|
|
const content::MainFunctionParams& params) {
|
|
|
|
return new AtomBrowserMainParts(params);
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
2016-01-25 16:37:15 +00:00
|
|
|
void AtomBrowserClient::WebNotificationAllowed(
|
|
|
|
int render_process_id,
|
2019-05-03 19:08:41 +00:00
|
|
|
const base::RepeatingCallback<void(bool, bool)>& callback) {
|
2016-03-13 22:23:39 +00:00
|
|
|
content::WebContents* web_contents =
|
|
|
|
WebContentsPreferences::GetWebContentsFromProcessID(render_process_id);
|
2016-01-23 13:29:47 +00:00
|
|
|
if (!web_contents) {
|
2016-07-02 07:54:12 +00:00
|
|
|
callback.Run(false, false);
|
2016-01-23 13:29:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* permission_helper =
|
2016-01-23 13:29:47 +00:00
|
|
|
WebContentsPermissionHelper::FromWebContents(web_contents);
|
|
|
|
if (!permission_helper) {
|
2016-07-02 07:54:12 +00:00
|
|
|
callback.Run(false, false);
|
2016-01-23 13:29:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-07-02 07:54:12 +00:00
|
|
|
permission_helper->RequestWebNotificationPermission(
|
|
|
|
base::Bind(callback, web_contents->IsAudioMuted()));
|
2016-01-23 13:29:47 +00:00
|
|
|
}
|
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
void AtomBrowserClient::RenderProcessHostDestroyed(
|
|
|
|
content::RenderProcessHost* host) {
|
|
|
|
int process_id = host->GetID();
|
2017-07-10 22:48:12 +00:00
|
|
|
pending_processes_.erase(process_id);
|
2017-03-19 08:25:45 +00:00
|
|
|
RemoveProcessPreferences(process_id);
|
2017-05-16 00:41:45 +00:00
|
|
|
}
|
|
|
|
|
2017-05-26 14:51:17 +00:00
|
|
|
void AtomBrowserClient::RenderProcessReady(content::RenderProcessHost* host) {
|
2018-09-15 00:13:02 +00:00
|
|
|
render_process_host_pids_[host->GetID()] =
|
|
|
|
base::GetProcId(host->GetProcess().Handle());
|
2017-05-16 00:41:45 +00:00
|
|
|
if (delegate_) {
|
|
|
|
static_cast<api::App*>(delegate_)->RenderProcessReady(host);
|
|
|
|
}
|
2015-08-11 07:39:17 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 00:11:49 +00:00
|
|
|
void AtomBrowserClient::RenderProcessExited(
|
|
|
|
content::RenderProcessHost* host,
|
|
|
|
const content::ChildProcessTerminationInfo& info) {
|
2017-05-26 15:32:08 +00:00
|
|
|
auto host_pid = render_process_host_pids_.find(host->GetID());
|
|
|
|
if (host_pid != render_process_host_pids_.end()) {
|
|
|
|
if (delegate_) {
|
|
|
|
static_cast<api::App*>(delegate_)->RenderProcessDisconnected(
|
|
|
|
host_pid->second);
|
|
|
|
}
|
|
|
|
render_process_host_pids_.erase(host_pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-21 15:05:21 +00:00
|
|
|
void OnOpenExternal(const GURL& escaped_url, bool allowed) {
|
2019-05-03 20:53:45 +00:00
|
|
|
if (allowed) {
|
2018-07-21 15:05:21 +00:00
|
|
|
platform_util::OpenExternal(
|
2019-05-03 20:53:45 +00:00
|
|
|
escaped_url, platform_util::OpenExternalOptions(), base::DoNothing());
|
|
|
|
}
|
2018-07-21 15:05:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void HandleExternalProtocolInUI(
|
|
|
|
const GURL& url,
|
|
|
|
const content::ResourceRequestInfo::WebContentsGetter& web_contents_getter,
|
|
|
|
bool has_user_gesture) {
|
|
|
|
content::WebContents* web_contents = web_contents_getter.Run();
|
|
|
|
if (!web_contents)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto* permission_helper =
|
|
|
|
WebContentsPermissionHelper::FromWebContents(web_contents);
|
|
|
|
if (!permission_helper)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GURL escaped_url(net::EscapeExternalHandlerValue(url.spec()));
|
|
|
|
auto callback = base::Bind(&OnOpenExternal, escaped_url);
|
|
|
|
permission_helper->RequestOpenExternalPermission(callback, has_user_gesture,
|
|
|
|
url);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AtomBrowserClient::HandleExternalProtocol(
|
|
|
|
const GURL& url,
|
|
|
|
content::ResourceRequestInfo::WebContentsGetter web_contents_getter,
|
|
|
|
int child_id,
|
|
|
|
content::NavigationUIData* navigation_data,
|
|
|
|
bool is_main_frame,
|
|
|
|
ui::PageTransition page_transition,
|
2019-01-09 20:18:07 +00:00
|
|
|
bool has_user_gesture,
|
2019-03-22 01:19:16 +00:00
|
|
|
network::mojom::URLLoaderFactoryRequest* factory_request,
|
2019-03-22 04:02:40 +00:00
|
|
|
// clang-format off
|
|
|
|
network::mojom::URLLoaderFactory*& out_factory) { // NOLINT
|
|
|
|
// clang-format on
|
2019-01-12 01:00:43 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::UI},
|
2018-07-21 15:05:21 +00:00
|
|
|
base::BindOnce(&HandleExternalProtocolInUI, url, web_contents_getter,
|
|
|
|
has_user_gesture));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-15 15:42:43 +00:00
|
|
|
std::vector<std::unique_ptr<content::NavigationThrottle>>
|
|
|
|
AtomBrowserClient::CreateThrottlesForNavigation(
|
|
|
|
content::NavigationHandle* handle) {
|
|
|
|
std::vector<std::unique_ptr<content::NavigationThrottle>> throttles;
|
|
|
|
throttles.push_back(std::make_unique<AtomNavigationThrottle>(handle));
|
|
|
|
return throttles;
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:51:43 +00:00
|
|
|
content::MediaObserver* AtomBrowserClient::GetMediaObserver() {
|
|
|
|
return MediaCaptureDevicesDispatcher::GetInstance();
|
|
|
|
}
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
content::DevToolsManagerDelegate*
|
|
|
|
AtomBrowserClient::GetDevToolsManagerDelegate() {
|
|
|
|
return new DevToolsManagerDelegate;
|
|
|
|
}
|
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
NotificationPresenter* AtomBrowserClient::GetNotificationPresenter() {
|
|
|
|
if (!notification_presenter_) {
|
|
|
|
notification_presenter_.reset(NotificationPresenter::Create());
|
|
|
|
}
|
|
|
|
return notification_presenter_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
content::PlatformNotificationService*
|
2019-04-20 17:20:37 +00:00
|
|
|
AtomBrowserClient::GetPlatformNotificationService(
|
|
|
|
content::BrowserContext* browser_context) {
|
2018-10-17 18:01:11 +00:00
|
|
|
if (!notification_service_) {
|
|
|
|
notification_service_.reset(new PlatformNotificationService(this));
|
|
|
|
}
|
|
|
|
return notification_service_.get();
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:45:41 +00:00
|
|
|
base::FilePath AtomBrowserClient::GetDefaultDownloadDirectory() {
|
|
|
|
// ~/Downloads
|
|
|
|
base::FilePath path;
|
|
|
|
if (base::PathService::Get(base::DIR_HOME, &path))
|
|
|
|
path = path.Append(FILE_PATH_LITERAL("Downloads"));
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:38:41 +00:00
|
|
|
scoped_refptr<network::SharedURLLoaderFactory>
|
|
|
|
AtomBrowserClient::GetSystemSharedURLLoaderFactory() {
|
|
|
|
if (!g_browser_process)
|
|
|
|
return nullptr;
|
|
|
|
return g_browser_process->shared_url_loader_factory();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomBrowserClient::OnNetworkServiceCreated(
|
|
|
|
network::mojom::NetworkService* network_service) {
|
2019-03-26 01:10:48 +00:00
|
|
|
if (!g_browser_process ||
|
|
|
|
!base::FeatureList::IsEnabled(network::features::kNetworkService))
|
2018-11-07 14:38:41 +00:00
|
|
|
return;
|
2019-03-26 01:10:48 +00:00
|
|
|
|
2018-11-07 14:38:41 +00:00
|
|
|
g_browser_process->system_network_context_manager()->OnNetworkServiceCreated(
|
|
|
|
network_service);
|
|
|
|
}
|
|
|
|
|
2019-04-24 00:31:36 +00:00
|
|
|
std::vector<base::FilePath>
|
|
|
|
AtomBrowserClient::GetNetworkContextsParentDirectory() {
|
|
|
|
base::FilePath user_data_dir;
|
|
|
|
base::PathService::Get(DIR_USER_DATA, &user_data_dir);
|
|
|
|
DCHECK(!user_data_dir.empty());
|
|
|
|
|
|
|
|
return {user_data_dir};
|
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::ShouldBypassCORB(int render_process_id) const {
|
2018-11-21 20:10:05 +00:00
|
|
|
// This is called on the network thread.
|
|
|
|
base::AutoLock auto_lock(process_preferences_lock_);
|
|
|
|
auto it = process_preferences_.find(render_process_id);
|
|
|
|
return it != process_preferences_.end() && !it->second.web_security;
|
|
|
|
}
|
|
|
|
|
2019-01-21 18:32:34 +00:00
|
|
|
std::string AtomBrowserClient::GetProduct() const {
|
|
|
|
return "Chrome/" CHROME_VERSION_STRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string AtomBrowserClient::GetUserAgent() const {
|
2019-05-01 23:34:42 +00:00
|
|
|
if (user_agent_override_.empty())
|
|
|
|
return GetApplicationUserAgent();
|
|
|
|
return user_agent_override_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomBrowserClient::SetUserAgent(const std::string& user_agent) {
|
|
|
|
user_agent_override_ = user_agent;
|
2019-01-21 18:32:34 +00:00
|
|
|
}
|
|
|
|
|
2019-04-23 21:39:21 +00:00
|
|
|
void AtomBrowserClient::RegisterNonNetworkNavigationURLLoaderFactories(
|
|
|
|
int frame_tree_node_id,
|
|
|
|
NonNetworkURLLoaderFactoryMap* factories) {
|
|
|
|
content::WebContents* web_contents =
|
|
|
|
content::WebContents::FromFrameTreeNodeId(frame_tree_node_id);
|
|
|
|
api::ProtocolNS* protocol = api::ProtocolNS::FromWrappedClass(
|
|
|
|
v8::Isolate::GetCurrent(), web_contents->GetBrowserContext());
|
|
|
|
if (protocol)
|
|
|
|
protocol->RegisterURLLoaderFactories(factories);
|
|
|
|
}
|
|
|
|
|
2019-05-07 02:33:05 +00:00
|
|
|
void AtomBrowserClient::RegisterNonNetworkSubresourceURLLoaderFactories(
|
|
|
|
int render_process_id,
|
|
|
|
int render_frame_id,
|
|
|
|
NonNetworkURLLoaderFactoryMap* factories) {
|
|
|
|
// Chromium may call this even when NetworkService is not enabled.
|
|
|
|
if (!base::FeatureList::IsEnabled(network::features::kNetworkService))
|
|
|
|
return;
|
|
|
|
|
|
|
|
content::RenderFrameHost* frame_host =
|
|
|
|
content::RenderFrameHost::FromID(render_process_id, render_frame_id);
|
|
|
|
content::WebContents* web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(frame_host);
|
|
|
|
api::ProtocolNS* protocol = api::ProtocolNS::FromWrappedClass(
|
|
|
|
v8::Isolate::GetCurrent(), web_contents->GetBrowserContext());
|
|
|
|
if (protocol)
|
|
|
|
protocol->RegisterURLLoaderFactories(factories);
|
|
|
|
}
|
|
|
|
|
2019-05-22 01:43:37 +00:00
|
|
|
bool AtomBrowserClient::WillCreateURLLoaderFactory(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::RenderFrameHost* frame_host,
|
|
|
|
int render_process_id,
|
|
|
|
bool is_navigation,
|
|
|
|
bool is_download,
|
|
|
|
const url::Origin& request_initiator,
|
|
|
|
network::mojom::URLLoaderFactoryRequest* factory_request,
|
|
|
|
network::mojom::TrustedURLLoaderHeaderClientPtrInfo* header_client,
|
|
|
|
bool* bypass_redirect_checks) {
|
|
|
|
content::WebContents* web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(frame_host);
|
2019-05-24 02:28:00 +00:00
|
|
|
api::ProtocolNS* protocol = api::ProtocolNS::FromWrappedClass(
|
|
|
|
v8::Isolate::GetCurrent(), web_contents->GetBrowserContext());
|
|
|
|
if (!protocol)
|
2019-05-22 01:43:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
auto proxied_request = std::move(*factory_request);
|
|
|
|
network::mojom::URLLoaderFactoryPtrInfo target_factory_info;
|
|
|
|
*factory_request = mojo::MakeRequest(&target_factory_info);
|
2019-05-24 02:28:00 +00:00
|
|
|
new ProxyingURLLoaderFactory(protocol->intercept_handlers(),
|
|
|
|
std::move(proxied_request),
|
2019-05-22 01:43:37 +00:00
|
|
|
std::move(target_factory_info));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:45:41 +00:00
|
|
|
std::string AtomBrowserClient::GetApplicationLocale() {
|
|
|
|
if (BrowserThread::CurrentlyOn(BrowserThread::IO))
|
|
|
|
return g_io_thread_application_locale.Get();
|
|
|
|
return *g_application_locale;
|
|
|
|
}
|
|
|
|
|
2018-12-05 08:03:39 +00:00
|
|
|
bool AtomBrowserClient::ShouldEnableStrictSiteIsolation() {
|
|
|
|
// Enable site isolation. It is off by default in Chromium <= 69.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|