2013-04-12 01:46:58 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// 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
|
|
|
|
|
|
|
#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:
|
2013-08-30 04:04:51 +00:00
|
|
|
net::URLRequestContextGetter* CreateRequestContext(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
|
2013-04-12 12:48:02 +00:00
|
|
|
virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
|
|
|
|
const GURL& url,
|
2013-06-01 14:33:40 +00:00
|
|
|
WebPreferences* prefs) OVERRIDE;
|
2013-05-28 08:01:44 +00:00
|
|
|
virtual bool ShouldSwapProcessesForNavigation(
|
|
|
|
content::SiteInstance* site_instance,
|
|
|
|
const GURL& current_url,
|
|
|
|
const GURL& new_url) OVERRIDE;
|
2014-01-30 13:57:01 +00:00
|
|
|
virtual void AppendExtraCommandLineSwitches(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:
|
2013-04-12 01:46:58 +00:00
|
|
|
virtual brightray::BrowserMainParts* OverrideCreateBrowserMainParts(
|
|
|
|
const content::MainFunctionParams&) OVERRIDE;
|
|
|
|
|
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_
|