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>
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
#include "brightray/browser/browser_client.h"
|
|
|
|
|
|
|
|
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
|
|
|
|
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*
|
2014-10-08 03:55:14 +00:00
|
|
|
GetSpeechRecognitionManagerDelegate() override;
|
2014-10-31 10:26:01 +00:00
|
|
|
content::AccessTokenStore* CreateAccessTokenStore() override;
|
|
|
|
void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
|
|
|
|
const GURL& url,
|
|
|
|
content::WebPreferences* prefs) override;
|
|
|
|
bool ShouldSwapBrowsingInstancesForNavigation(
|
2013-05-28 08:01:44 +00:00
|
|
|
content::SiteInstance* site_instance,
|
|
|
|
const GURL& current_url,
|
2014-10-31 10:26:01 +00:00
|
|
|
const GURL& new_url) override;
|
|
|
|
std::string GetApplicationLocale() override;
|
|
|
|
void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
|
|
|
|
int child_process_id) 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
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
// The render process which would be swapped out soon.
|
|
|
|
content::RenderProcessHost* dying_render_process_;
|
|
|
|
|
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_
|