electron/browser/atom_browser_client.h

37 lines
1.1 KiB
C
Raw Normal View History

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.
#ifndef ATOM_BROWSER_ATOM_BROWSER_CLIENT_
#define ATOM_BROWSER_ATOM_BROWSER_CLIENT_
#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-04-12 12:48:02 +00:00
virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
const GURL& url,
WebPreferences* prefs) OVERRIDE;
virtual content::MediaObserver* GetMediaObserver() OVERRIDE;
virtual bool ShouldSwapProcessesForNavigation(
content::SiteInstance* site_instance,
const GURL& current_url,
const GURL& new_url) 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;
DISALLOW_COPY_AND_ASSIGN(AtomBrowserClient);
};
} // namespace atom
#endif // ATOM_BROWSER_ATOM_BROWSER_CLIENT_