2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 09:46:58 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#ifndef SHELL_BROWSER_ATOM_BROWSER_CLIENT_H_
|
|
|
|
#define SHELL_BROWSER_ATOM_BROWSER_CLIENT_H_
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2015-08-11 15:39:17 +08:00
|
|
|
#include <map>
|
2018-09-12 19:25:56 -05:00
|
|
|
#include <memory>
|
2016-08-15 07:59:08 -03:00
|
|
|
#include <set>
|
2014-05-29 21:24:22 +08:00
|
|
|
#include <string>
|
2015-06-12 13:28:23 +05:30
|
|
|
#include <vector>
|
2014-05-29 21:24:22 +08:00
|
|
|
|
2018-11-22 01:40:05 +05:30
|
|
|
#include "base/synchronization/lock.h"
|
2018-10-23 10:45:41 +02:00
|
|
|
#include "content/public/browser/content_browser_client.h"
|
2015-08-11 15:39:17 +08:00
|
|
|
#include "content/public/browser/render_process_host_observer.h"
|
2017-08-21 00:35:04 +03:00
|
|
|
#include "net/ssl/client_cert_identity.h"
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2015-05-12 17:52:30 +05:30
|
|
|
namespace content {
|
|
|
|
class QuotaPermissionContext;
|
2015-06-04 02:27:06 +05:30
|
|
|
class ClientCertificateDelegate;
|
2018-04-17 21:44:10 -04:00
|
|
|
} // namespace content
|
2015-06-04 02:27:06 +05:30
|
|
|
|
|
|
|
namespace net {
|
|
|
|
class SSLCertRequestInfo;
|
2015-05-12 17:52:30 +05:30
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2018-10-17 20:01:11 +02:00
|
|
|
class NotificationPresenter;
|
|
|
|
class PlatformNotificationService;
|
2015-09-29 17:47:26 +05:30
|
|
|
|
2018-10-23 10:45:41 +02:00
|
|
|
class AtomBrowserClient : public content::ContentBrowserClient,
|
2015-08-11 15:39:17 +08:00
|
|
|
public content::RenderProcessHostObserver {
|
2013-04-12 23:16:16 +08:00
|
|
|
public:
|
2018-10-23 10:45:41 +02:00
|
|
|
static AtomBrowserClient* Get();
|
|
|
|
static void SetApplicationLocale(const std::string& locale);
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
AtomBrowserClient();
|
2018-04-17 16:03:51 -07:00
|
|
|
~AtomBrowserClient() override;
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2015-11-18 10:07:03 +08:00
|
|
|
using Delegate = content::ContentBrowserClient;
|
|
|
|
void set_delegate(Delegate* delegate) { delegate_ = delegate; }
|
|
|
|
|
2016-05-27 09:20:46 +09:00
|
|
|
// Returns the WebContents for pending render processes.
|
|
|
|
content::WebContents* GetWebContentsFromProcessID(int process_id);
|
|
|
|
|
2015-05-11 14:40:40 +08:00
|
|
|
// Don't force renderer process to restart for once.
|
|
|
|
static void SuppressRendererProcessRestartForOnce();
|
2016-05-06 00:04:16 +05:30
|
|
|
|
2018-10-17 20:01:11 +02:00
|
|
|
NotificationPresenter* GetNotificationPresenter();
|
|
|
|
|
|
|
|
void WebNotificationAllowed(int render_process_id,
|
2019-05-29 13:02:15 -07:00
|
|
|
base::OnceCallback<void(bool, bool)> callback);
|
2018-10-17 20:01:11 +02:00
|
|
|
|
|
|
|
// content::NavigatorDelegate
|
2018-09-16 01:42:43 +10:00
|
|
|
std::vector<std::unique_ptr<content::NavigationThrottle>>
|
|
|
|
CreateThrottlesForNavigation(content::NavigationHandle* handle) override;
|
|
|
|
|
2014-07-28 17:57:54 +08:00
|
|
|
// content::ContentBrowserClient:
|
2018-10-23 10:45:41 +02:00
|
|
|
std::string GetApplicationLocale() override;
|
|
|
|
|
2018-12-05 09:03:39 +01:00
|
|
|
// content::ContentBrowserClient:
|
|
|
|
bool ShouldEnableStrictSiteIsolation() override;
|
|
|
|
|
2019-07-02 18:22:09 -07:00
|
|
|
std::string GetUserAgent() override;
|
2019-05-01 16:34:42 -07:00
|
|
|
void SetUserAgent(const std::string& user_agent);
|
|
|
|
|
2019-05-31 15:47:18 -07:00
|
|
|
void SetCanUseCustomSiteInstance(bool should_disable);
|
|
|
|
bool CanUseCustomSiteInstance() override;
|
|
|
|
|
2018-10-23 10:45:41 +02:00
|
|
|
protected:
|
2018-04-11 14:56:56 +05:30
|
|
|
void RenderProcessWillLaunch(
|
|
|
|
content::RenderProcessHost* host,
|
|
|
|
service_manager::mojom::ServiceRequest* service_request) override;
|
2014-10-31 18:26:01 +08:00
|
|
|
content::SpeechRecognitionManagerDelegate*
|
2018-04-17 21:44:10 -04:00
|
|
|
CreateSpeechRecognitionManagerDelegate() override;
|
2019-01-09 16:44:44 -08:00
|
|
|
content::TtsControllerDelegate* GetTtsControllerDelegate() override;
|
2014-10-31 18:26:01 +08:00
|
|
|
void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
|
|
|
|
content::WebPreferences* prefs) override;
|
2018-12-05 09:03:39 +01:00
|
|
|
SiteInstanceForNavigationType ShouldOverrideSiteInstanceForNavigation(
|
|
|
|
content::RenderFrameHost* current_rfh,
|
|
|
|
content::RenderFrameHost* speculative_rfh,
|
2015-04-26 12:28:27 +08:00
|
|
|
content::BrowserContext* browser_context,
|
2018-12-05 09:03:39 +01:00
|
|
|
const GURL& url,
|
2018-04-06 12:52:52 +05:30
|
|
|
bool has_request_started,
|
2018-12-05 09:03:39 +01:00
|
|
|
content::SiteInstance** affinity_site_instance) const override;
|
|
|
|
void RegisterPendingSiteInstance(
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
content::SiteInstance* pending_site_instance) override;
|
2014-10-31 18:26:01 +08:00
|
|
|
void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
|
|
|
|
int child_process_id) override;
|
2019-02-06 06:25:42 +01:00
|
|
|
void AdjustUtilityServiceProcessCommandLine(
|
|
|
|
const service_manager::Identity& identity,
|
|
|
|
base::CommandLine* command_line) override;
|
2015-04-28 21:15:58 +05:30
|
|
|
void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override;
|
2018-03-14 16:55:59 +09:00
|
|
|
std::string GetGeolocationApiKey() override;
|
2019-04-20 13:20:37 -04:00
|
|
|
scoped_refptr<content::QuotaPermissionContext> CreateQuotaPermissionContext()
|
|
|
|
override;
|
2019-01-09 12:16:33 -08:00
|
|
|
content::GeneratedCodeCacheSettings GetGeneratedCodeCacheSettings(
|
|
|
|
content::BrowserContext* context) override;
|
2015-11-18 10:39:25 +08:00
|
|
|
void AllowCertificateError(
|
2016-03-08 23:28:53 +09:00
|
|
|
content::WebContents* web_contents,
|
2015-11-18 10:39:25 +08:00
|
|
|
int cert_error,
|
|
|
|
const net::SSLInfo& ssl_info,
|
|
|
|
const GURL& request_url,
|
2019-05-13 14:24:39 -07:00
|
|
|
bool is_main_frame_request,
|
2015-11-18 10:39:25 +08:00
|
|
|
bool strict_enforcement,
|
|
|
|
bool expired_previous_decision,
|
2016-11-30 16:30:03 +09:00
|
|
|
const base::Callback<void(content::CertificateRequestResultType)>&
|
|
|
|
callback) override;
|
2019-07-02 18:22:09 -07:00
|
|
|
base::OnceClosure SelectClientCertificate(
|
2015-06-04 02:27:06 +05:30
|
|
|
content::WebContents* web_contents,
|
|
|
|
net::SSLCertRequestInfo* cert_request_info,
|
2017-08-21 00:35:04 +03:00
|
|
|
net::ClientCertIdentityList client_certs,
|
2016-05-23 10:59:39 +09:00
|
|
|
std::unique_ptr<content::ClientCertificateDelegate> delegate) override;
|
2018-04-17 21:44:10 -04:00
|
|
|
bool CanCreateWindow(content::RenderFrameHost* opener,
|
|
|
|
const GURL& opener_url,
|
|
|
|
const GURL& opener_top_level_frame_url,
|
2019-01-21 23:44:57 +05:30
|
|
|
const url::Origin& source_origin,
|
2018-04-17 21:44:10 -04:00
|
|
|
content::mojom::WindowContainerType container_type,
|
|
|
|
const GURL& target_url,
|
|
|
|
const content::Referrer& referrer,
|
|
|
|
const std::string& frame_name,
|
|
|
|
WindowOpenDisposition disposition,
|
|
|
|
const blink::mojom::WindowFeatures& features,
|
|
|
|
const std::vector<std::string>& additional_features,
|
2018-04-11 10:42:14 +02:00
|
|
|
const scoped_refptr<network::ResourceRequestBody>& body,
|
2018-04-17 21:44:10 -04:00
|
|
|
bool user_gesture,
|
|
|
|
bool opener_suppressed,
|
|
|
|
bool* no_javascript_access) override;
|
2016-08-24 05:46:54 +05:30
|
|
|
void GetAdditionalAllowedSchemesForFileSystem(
|
2018-10-19 15:50:30 +02:00
|
|
|
std::vector<std::string>* additional_schemes) override;
|
|
|
|
void GetAdditionalWebUISchemes(
|
|
|
|
std::vector<std::string>* additional_schemes) override;
|
2018-02-13 15:57:54 +09:00
|
|
|
void SiteInstanceDeleting(content::SiteInstance* site_instance) override;
|
2018-04-12 14:18:50 +05:30
|
|
|
std::unique_ptr<net::ClientCertStore> CreateClientCertStore(
|
|
|
|
content::ResourceContext* resource_context) override;
|
2018-08-23 21:21:46 +05:30
|
|
|
std::unique_ptr<device::LocationProvider> OverrideSystemLocationProvider()
|
|
|
|
override;
|
2018-10-04 23:38:56 +05:30
|
|
|
network::mojom::NetworkContextPtr CreateNetworkContext(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path) override;
|
2019-03-26 06:40:48 +05:30
|
|
|
network::mojom::NetworkContext* GetSystemNetworkContext() override;
|
2019-01-21 23:50:22 +05:30
|
|
|
base::Optional<service_manager::Manifest> GetServiceManifestOverlay(
|
2018-10-04 23:38:56 +05:30
|
|
|
base::StringPiece name) override;
|
2019-05-28 13:18:10 -07:00
|
|
|
std::vector<service_manager::Manifest> GetExtraServiceManifests() override;
|
2018-10-19 20:51:43 +02:00
|
|
|
content::MediaObserver* GetMediaObserver() override;
|
2018-10-19 15:50:30 +02:00
|
|
|
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
|
2019-04-20 13:20:37 -04:00
|
|
|
content::PlatformNotificationService* GetPlatformNotificationService(
|
|
|
|
content::BrowserContext* browser_context) override;
|
2019-06-03 20:44:12 -07:00
|
|
|
std::unique_ptr<content::BrowserMainParts> CreateBrowserMainParts(
|
2014-10-31 18:26:01 +08:00
|
|
|
const content::MainFunctionParams&) override;
|
2018-10-23 10:45:41 +02:00
|
|
|
base::FilePath GetDefaultDownloadDirectory() override;
|
2018-11-07 20:08:41 +05:30
|
|
|
scoped_refptr<network::SharedURLLoaderFactory>
|
|
|
|
GetSystemSharedURLLoaderFactory() override;
|
|
|
|
void OnNetworkServiceCreated(
|
|
|
|
network::mojom::NetworkService* network_service) override;
|
2019-04-23 17:31:36 -07:00
|
|
|
std::vector<base::FilePath> GetNetworkContextsParentDirectory() override;
|
2018-12-05 09:03:39 +01:00
|
|
|
bool ShouldBypassCORB(int render_process_id) const override;
|
2019-07-02 18:22:09 -07:00
|
|
|
std::string GetProduct() override;
|
2019-04-24 06:39:21 +09:00
|
|
|
void RegisterNonNetworkNavigationURLLoaderFactories(
|
|
|
|
int frame_tree_node_id,
|
|
|
|
NonNetworkURLLoaderFactoryMap* factories) override;
|
2019-05-07 11:33:05 +09:00
|
|
|
void RegisterNonNetworkSubresourceURLLoaderFactories(
|
|
|
|
int render_process_id,
|
|
|
|
int render_frame_id,
|
|
|
|
NonNetworkURLLoaderFactoryMap* factories) override;
|
2019-05-22 10:43:37 +09:00
|
|
|
bool WillCreateURLLoaderFactory(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
int render_process_id,
|
|
|
|
bool is_navigation,
|
|
|
|
bool is_download,
|
|
|
|
const url::Origin& request_initiator,
|
2019-07-24 15:58:51 -07:00
|
|
|
mojo::PendingReceiver<network::mojom::URLLoaderFactory>* factory_receiver,
|
2019-05-22 10:43:37 +09:00
|
|
|
network::mojom::TrustedURLLoaderHeaderClientPtrInfo* header_client,
|
|
|
|
bool* bypass_redirect_checks) override;
|
2019-06-12 23:42:21 -07:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override;
|
|
|
|
#endif
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2018-07-22 01:05:21 +10:00
|
|
|
bool 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 12:18:07 -08:00
|
|
|
bool has_user_gesture,
|
2019-07-24 15:58:51 -07:00
|
|
|
network::mojom::URLLoaderFactoryPtr* out_factory) override;
|
|
|
|
|
|
|
|
// content::RenderProcessHostObserver:
|
|
|
|
void RenderProcessHostDestroyed(content::RenderProcessHost* host) override;
|
|
|
|
void RenderProcessReady(content::RenderProcessHost* host) override;
|
|
|
|
void RenderProcessExited(
|
|
|
|
content::RenderProcessHost* host,
|
|
|
|
const content::ChildProcessTerminationInfo& info) override;
|
2015-08-11 15:39:17 +08:00
|
|
|
|
|
|
|
private:
|
2017-03-19 17:25:45 +09:00
|
|
|
struct ProcessPreferences {
|
2018-02-13 15:57:54 +09:00
|
|
|
bool sandbox = false;
|
|
|
|
bool native_window_open = false;
|
|
|
|
bool disable_popups = false;
|
2018-11-22 01:40:05 +05:30
|
|
|
bool web_security = true;
|
2017-03-19 17:25:45 +09:00
|
|
|
};
|
2018-03-08 16:36:21 +09:00
|
|
|
|
2018-12-05 09:03:39 +01:00
|
|
|
bool ShouldForceNewSiteInstance(content::RenderFrameHost* current_rfh,
|
|
|
|
content::RenderFrameHost* speculative_rfh,
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
const GURL& dest_url,
|
|
|
|
bool has_request_started) const;
|
|
|
|
bool NavigationWasRedirectedCrossSite(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::SiteInstance* current_instance,
|
|
|
|
content::SiteInstance* speculative_instance,
|
|
|
|
const GURL& dest_url,
|
|
|
|
bool has_request_started) const;
|
2017-03-19 17:25:45 +09:00
|
|
|
void AddProcessPreferences(int process_id, ProcessPreferences prefs);
|
|
|
|
void RemoveProcessPreferences(int process_id);
|
2018-12-05 09:03:39 +01:00
|
|
|
bool IsProcessObserved(int process_id) const;
|
|
|
|
bool IsRendererSandboxed(int process_id) const;
|
|
|
|
bool RendererUsesNativeWindowOpen(int process_id) const;
|
|
|
|
bool RendererDisablesPopups(int process_id) const;
|
|
|
|
std::string GetAffinityPreference(content::RenderFrameHost* rfh) const;
|
|
|
|
content::SiteInstance* GetSiteInstanceFromAffinity(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
const GURL& url,
|
|
|
|
content::RenderFrameHost* rfh) const;
|
|
|
|
void ConsiderSiteInstanceForAffinity(content::RenderFrameHost* rfh,
|
|
|
|
content::SiteInstance* site_instance);
|
2016-08-15 07:59:08 -03:00
|
|
|
|
2019-06-20 12:10:56 +02:00
|
|
|
bool IsRendererSubFrame(int process_id) const;
|
|
|
|
|
2017-07-10 15:48:12 -07:00
|
|
|
// pending_render_process => web contents.
|
|
|
|
std::map<int, content::WebContents*> pending_processes_;
|
2017-03-19 17:25:45 +09:00
|
|
|
|
2017-05-26 08:32:08 -07:00
|
|
|
std::map<int, base::ProcessId> render_process_host_pids_;
|
2017-12-13 11:57:41 +01:00
|
|
|
|
2019-06-20 12:10:56 +02:00
|
|
|
std::set<int> renderer_is_subframe_;
|
|
|
|
|
2017-12-13 11:57:41 +01:00
|
|
|
// list of site per affinity. weak_ptr to prevent instance locking
|
2018-12-05 09:03:39 +01:00
|
|
|
std::map<std::string, content::SiteInstance*> site_per_affinities_;
|
2017-12-13 11:57:41 +01:00
|
|
|
|
2018-10-17 20:01:11 +02:00
|
|
|
std::unique_ptr<PlatformNotificationService> notification_service_;
|
|
|
|
std::unique_ptr<NotificationPresenter> notification_presenter_;
|
|
|
|
|
2018-05-22 00:18:38 +02:00
|
|
|
Delegate* delegate_ = nullptr;
|
2015-11-18 10:07:03 +08:00
|
|
|
|
2018-12-05 09:03:39 +01:00
|
|
|
mutable base::Lock process_preferences_lock_;
|
2018-11-22 01:40:05 +05:30
|
|
|
std::map<int, ProcessPreferences> process_preferences_;
|
|
|
|
|
2019-05-01 16:34:42 -07:00
|
|
|
std::string user_agent_override_ = "";
|
|
|
|
|
2019-05-31 15:47:18 -07:00
|
|
|
bool disable_process_restart_tricks_ = false;
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserClient);
|
|
|
|
};
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#endif // SHELL_BROWSER_ATOM_BROWSER_CLIENT_H_
|