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 BrowserMainParts : public content::BrowserMainParts {
|
||||
public:
|
||||
public:
|
||||
BrowserMainParts();
|
||||
~BrowserMainParts();
|
||||
|
||||
BrowserContext* browser_context() { return browser_context_.get(); }
|
||||
|
||||
protected:
|
||||
// Subclasses should override this to provide their own BrowserContxt implementation. The caller
|
||||
// takes ownership of the returned object.
|
||||
protected:
|
||||
// Subclasses should override this to provide their own BrowserContxt
|
||||
// implementation. The caller takes ownership of the returned object.
|
||||
virtual BrowserContext* CreateBrowserContext();
|
||||
|
||||
#if defined(OS_MACOSX)
|
||||
|
@ -33,13 +33,13 @@ protected:
|
|||
virtual void PreMainMessageLoopRun() OVERRIDE;
|
||||
virtual void PostMainMessageLoopRun() OVERRIDE;
|
||||
|
||||
private:
|
||||
private:
|
||||
scoped_ptr<BrowserContext> browser_context_;
|
||||
scoped_ptr<WebUIControllerFactory> web_ui_controller_factory_;
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(BrowserMainParts);
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace brightray
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue