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
|
|
|
|
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-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 {
|
|
|
|
|
|
|
|
class AtomBrowserClient : public brightray::BrowserClient {
|
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-05-11 06:40:40 +00:00
|
|
|
// Don't force renderer process to restart for once.
|
|
|
|
static void SuppressRendererProcessRestartForOnce();
|
2015-06-12 07:58:23 +00:00
|
|
|
// Custom schemes to be registered to standard.
|
|
|
|
static void SetCustomSchemes(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
|
|
|
content::AccessTokenStore* CreateAccessTokenStore() override;
|
|
|
|
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,
|
|
|
|
content::SiteInstance** new_instance);
|
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-06-03 20:57:06 +00:00
|
|
|
void SelectClientCertificate(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
net::SSLCertRequestInfo* cert_request_info,
|
|
|
|
scoped_ptr<content::ClientCertificateDelegate> delegate) override;
|
2013-04-12 12:48:02 +00:00
|
|
|
|
2013-04-12 15:16:16 +00:00
|
|
|
private:
|
2014-10-31 10:26:01 +00:00
|
|
|
brightray::BrowserMainParts* OverrideCreateBrowserMainParts(
|
|
|
|
const content::MainFunctionParams&) override;
|
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_
|