electron/atom/browser/atom_browser_client.h

49 lines
1.6 KiB
C
Raw Normal View History

2013-04-12 09:46:58 +08:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
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.
2014-03-16 08:58:59 +08:00
#ifndef ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_
#define ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_
2013-04-12 09:46:58 +08:00
2014-05-29 21:24:22 +08:00
#include <string>
2013-04-12 09:46:58 +08:00
#include "brightray/browser/browser_client.h"
namespace atom {
class AtomBrowserClient : public brightray::BrowserClient {
2013-04-12 23:16:16 +08:00
public:
2013-04-12 09:46:58 +08:00
AtomBrowserClient();
2013-04-12 23:16:16 +08:00
virtual ~AtomBrowserClient();
2013-04-12 09:46:58 +08:00
2013-04-12 23:16:16 +08:00
protected:
// content::ContentBrowserClient:
net::URLRequestContextGetter* CreateRequestContext(
content::BrowserContext* browser_context,
content::ProtocolHandlerMap* protocol_handlers,
content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
2013-04-12 20:48:02 +08:00
virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
const GURL& url,
WebPreferences* prefs) OVERRIDE;
virtual bool ShouldSwapBrowsingInstancesForNavigation(
content::SiteInstance* site_instance,
const GURL& current_url,
const GURL& new_url) OVERRIDE;
virtual std::string GetApplicationLocale() OVERRIDE;
virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
int child_process_id) OVERRIDE;
2013-04-12 20:48:02 +08:00
2013-04-12 23:16:16 +08:00
private:
2013-04-12 09:46:58 +08:00
virtual brightray::BrowserMainParts* OverrideCreateBrowserMainParts(
const content::MainFunctionParams&) OVERRIDE;
// The render process which would be swapped out soon.
content::RenderProcessHost* dying_render_process_;
2013-04-12 09:46:58 +08:00
DISALLOW_COPY_AND_ASSIGN(AtomBrowserClient);
};
} // namespace atom
2014-03-16 08:58:59 +08:00
#endif // ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_