Fix cpplint errors in browser_main_parts.h

This commit is contained in:
Adam Roben 2013-11-17 18:17:23 -05:00
parent a6ecd039e2
commit 7bada78519

View file

@ -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