Fix cpplint errors in browser_main_parts.h
This commit is contained in:
parent
a6ecd039e2
commit
7bada78519
1 changed files with 6 additions and 6 deletions
|
@ -15,15 +15,15 @@ class BrowserContext;
|
||||||
class WebUIControllerFactory;
|
class WebUIControllerFactory;
|
||||||
|
|
||||||
class BrowserMainParts : public content::BrowserMainParts {
|
class BrowserMainParts : public content::BrowserMainParts {
|
||||||
public:
|
public:
|
||||||
BrowserMainParts();
|
BrowserMainParts();
|
||||||
~BrowserMainParts();
|
~BrowserMainParts();
|
||||||
|
|
||||||
BrowserContext* browser_context() { return browser_context_.get(); }
|
BrowserContext* browser_context() { return browser_context_.get(); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Subclasses should override this to provide their own BrowserContxt implementation. The caller
|
// Subclasses should override this to provide their own BrowserContxt
|
||||||
// takes ownership of the returned object.
|
// implementation. The caller takes ownership of the returned object.
|
||||||
virtual BrowserContext* CreateBrowserContext();
|
virtual BrowserContext* CreateBrowserContext();
|
||||||
|
|
||||||
#if defined(OS_MACOSX)
|
#if defined(OS_MACOSX)
|
||||||
|
@ -33,13 +33,13 @@ protected:
|
||||||
virtual void PreMainMessageLoopRun() OVERRIDE;
|
virtual void PreMainMessageLoopRun() OVERRIDE;
|
||||||
virtual void PostMainMessageLoopRun() OVERRIDE;
|
virtual void PostMainMessageLoopRun() OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
scoped_ptr<BrowserContext> browser_context_;
|
scoped_ptr<BrowserContext> browser_context_;
|
||||||
scoped_ptr<WebUIControllerFactory> web_ui_controller_factory_;
|
scoped_ptr<WebUIControllerFactory> web_ui_controller_factory_;
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(BrowserMainParts);
|
DISALLOW_COPY_AND_ASSIGN(BrowserMainParts);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace brightray
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue