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:58:59 +00:00
|
|
|
#ifndef ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_
|
|
|
|
#define ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
#include <map>
|
2016-08-15 10:59:08 +00:00
|
|
|
#include <set>
|
2014-05-29 13:24:22 +00:00
|
|
|
#include <string>
|
2015-06-12 07:58:23 +00:00
|
|
|
#include <vector>
|
2014-05-29 13:24:22 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
#include "brightray/browser/browser_client.h"
|
2015-08-11 07:39:17 +00:00
|
|
|
#include "content/public/browser/render_process_host_observer.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-05-12 12:22:30 +00:00
|
|
|
namespace content {
|
|
|
|
class QuotaPermissionContext;
|
2015-06-03 20:57:06 +00:00
|
|
|
class ClientCertificateDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace net {
|
|
|
|
class SSLCertRequestInfo;
|
2015-05-12 12:22:30 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2015-09-29 12:17:26 +00:00
|
|
|
class AtomResourceDispatcherHostDelegate;
|
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
class AtomBrowserClient : public brightray::BrowserClient,
|
|
|
|
public content::RenderProcessHostObserver {
|
2013-04-12 15:16:16 +00:00
|
|
|
public:
|
2013-04-12 01:46:58 +00:00
|
|
|
AtomBrowserClient();
|
2013-04-12 15:16:16 +00:00
|
|
|
virtual ~AtomBrowserClient();
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-11-18 02:07:03 +00:00
|
|
|
using Delegate = content::ContentBrowserClient;
|
|
|
|
void set_delegate(Delegate* delegate) { delegate_ = delegate; }
|
|
|
|
|
2016-05-27 00:20:46 +00:00
|
|
|
// Returns the WebContents for pending render processes.
|
|
|
|
content::WebContents* GetWebContentsFromProcessID(int process_id);
|
|
|
|
|
2015-05-11 06:40:40 +00:00
|
|
|
// Don't force renderer process to restart for once.
|
|
|
|
static void SuppressRendererProcessRestartForOnce();
|
2016-05-05 18:34:16 +00:00
|
|
|
|
2015-12-08 19:21:46 +00:00
|
|
|
// Custom schemes to be registered to handle service worker.
|
|
|
|
static void SetCustomServiceWorkerSchemes(
|
|
|
|
const std::vector<std::string>& schemes);
|
2015-05-11 06:40:40 +00:00
|
|
|
|
2013-04-12 15:16:16 +00:00
|
|
|
protected:
|
2014-07-28 09:57:54 +00:00
|
|
|
// content::ContentBrowserClient:
|
2014-10-31 14:53:15 +00:00
|
|
|
void RenderProcessWillLaunch(content::RenderProcessHost* host) override;
|
2014-10-31 10:26:01 +00:00
|
|
|
content::SpeechRecognitionManagerDelegate*
|
2015-03-10 22:56:40 +00:00
|
|
|
CreateSpeechRecognitionManagerDelegate() override;
|
2014-10-31 10:26:01 +00:00
|
|
|
void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
|
|
|
|
content::WebPreferences* prefs) override;
|
|
|
|
std::string GetApplicationLocale() override;
|
2015-04-26 04:28:27 +00:00
|
|
|
void OverrideSiteInstanceForNavigation(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::SiteInstance* current_instance,
|
|
|
|
const GURL& dest_url,
|
2015-06-26 09:43:39 +00:00
|
|
|
content::SiteInstance** new_instance) override;
|
2014-10-31 10:26:01 +00:00
|
|
|
void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
|
|
|
|
int child_process_id) override;
|
2015-04-28 15:45:58 +00:00
|
|
|
void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override;
|
2015-05-12 12:22:30 +00:00
|
|
|
content::QuotaPermissionContext* CreateQuotaPermissionContext() override;
|
2015-11-18 02:39:25 +00:00
|
|
|
void 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,
|
|
|
|
content::ResourceType resource_type,
|
|
|
|
bool overridable,
|
|
|
|
bool strict_enforcement,
|
|
|
|
bool expired_previous_decision,
|
2016-11-30 07:30:03 +00:00
|
|
|
const base::Callback<void(content::CertificateRequestResultType)>&
|
|
|
|
callback) override;
|
2015-06-03 20:57:06 +00:00
|
|
|
void SelectClientCertificate(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
net::SSLCertRequestInfo* cert_request_info,
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<content::ClientCertificateDelegate> delegate) override;
|
2015-09-29 12:17:26 +00:00
|
|
|
void ResourceDispatcherHostCreated() override;
|
2016-10-09 23:30:38 +00:00
|
|
|
bool CanCreateWindow(
|
|
|
|
const GURL& opener_url,
|
|
|
|
const GURL& opener_top_level_frame_url,
|
|
|
|
const GURL& source_origin,
|
|
|
|
WindowContainerType container_type,
|
|
|
|
const GURL& target_url,
|
|
|
|
const content::Referrer& referrer,
|
2016-11-30 07:30:03 +00:00
|
|
|
const std::string& frame_name,
|
2016-10-09 23:30:38 +00:00
|
|
|
WindowOpenDisposition disposition,
|
|
|
|
const blink::WebWindowFeatures& features,
|
2017-01-23 08:44:42 +00:00
|
|
|
const std::vector<std::string>& additional_features,
|
2016-10-09 23:30:38 +00:00
|
|
|
const scoped_refptr<content::ResourceRequestBodyImpl>& body,
|
|
|
|
bool user_gesture,
|
|
|
|
bool opener_suppressed,
|
|
|
|
content::ResourceContext* context,
|
|
|
|
int render_process_id,
|
|
|
|
int opener_render_view_id,
|
|
|
|
int opener_render_frame_id,
|
|
|
|
bool* no_javascript_access) override;
|
2016-08-24 00:16:54 +00:00
|
|
|
void GetAdditionalAllowedSchemesForFileSystem(
|
|
|
|
std::vector<std::string>* schemes) override;
|
2013-04-12 12:48:02 +00:00
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
// brightray::BrowserClient:
|
2014-10-31 10:26:01 +00:00
|
|
|
brightray::BrowserMainParts* OverrideCreateBrowserMainParts(
|
|
|
|
const content::MainFunctionParams&) override;
|
2016-01-25 16:37:15 +00:00
|
|
|
void WebNotificationAllowed(
|
|
|
|
int render_process_id,
|
2016-07-02 07:54:12 +00:00
|
|
|
const base::Callback<void(bool, bool)>& callback) override;
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
// content::RenderProcessHostObserver:
|
|
|
|
void RenderProcessHostDestroyed(content::RenderProcessHost* host) override;
|
|
|
|
|
|
|
|
private:
|
2016-08-15 10:59:08 +00:00
|
|
|
bool ShouldCreateNewSiteInstance(content::BrowserContext* browser_context,
|
|
|
|
content::SiteInstance* current_instance,
|
|
|
|
const GURL& dest_url);
|
|
|
|
// Add/remove a process id to `sandboxed_renderers_`.
|
|
|
|
void AddSandboxedRendererId(int process_id);
|
|
|
|
void RemoveSandboxedRendererId(int process_id);
|
|
|
|
bool IsRendererSandboxed(int process_id);
|
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
// pending_render_process => current_render_process.
|
|
|
|
std::map<int, int> pending_processes_;
|
2016-08-15 10:59:08 +00:00
|
|
|
// Set that contains the process ids of all sandboxed renderers
|
|
|
|
std::set<int> sandboxed_renderers_;
|
|
|
|
base::Lock sandboxed_renderers_lock_;
|
2015-08-11 07:39:17 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<AtomResourceDispatcherHostDelegate>
|
2015-09-29 12:17:26 +00:00
|
|
|
resource_dispatcher_host_delegate_;
|
|
|
|
|
2015-11-18 02:07:03 +00:00
|
|
|
Delegate* delegate_;
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserClient);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#endif // ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_
|