This commit is contained in:
Cheng Zhao 2013-04-12 23:16:16 +08:00
parent cb2116f725
commit e49861b45b
5 changed files with 15 additions and 15 deletions

View file

@ -10,16 +10,16 @@
namespace atom {
class AtomBrowserClient : public brightray::BrowserClient {
public:
public:
AtomBrowserClient();
~AtomBrowserClient();
virtual ~AtomBrowserClient();
protected:
protected:
virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
const GURL& url,
webkit_glue::WebPreferences* prefs) OVERRIDE;
private:
private:
virtual brightray::BrowserMainParts* OverrideCreateBrowserMainParts(
const content::MainFunctionParams&) OVERRIDE;

View file

@ -10,11 +10,11 @@
namespace atom {
class AtomBrowserMainParts : public brightray::BrowserMainParts {
public:
public:
AtomBrowserMainParts();
~AtomBrowserMainParts();
virtual ~AtomBrowserMainParts();
protected:
protected:
virtual void PreMainMessageLoopRun() OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(AtomBrowserMainParts);