Fix cpplint errors in browser_client.h

This commit is contained in:
Adam Roben 2013-11-17 18:13:10 -05:00
parent 80dab9d862
commit 74661c342f

View file

@ -25,16 +25,20 @@ public:
NotificationPresenter* notification_presenter();
protected:
// Subclasses should override this to provide their own BrowserMainParts implementation. The
// lifetime of the returned instance is managed by the caller.
virtual BrowserMainParts* OverrideCreateBrowserMainParts(const content::MainFunctionParams&);
// Subclasses should override this to provide their own BrowserMainParts
// implementation. The lifetime of the returned instance is managed by the
// caller.
virtual BrowserMainParts* OverrideCreateBrowserMainParts(
const content::MainFunctionParams&);
// Subclasses that override this (e.g., to provide their own protocol handlers) should call this
// implementation after doing their own work.
virtual net::URLRequestContextGetter* CreateRequestContext(content::BrowserContext*, content::ProtocolHandlerMap*) OVERRIDE;
// Subclasses that override this (e.g., to provide their own protocol
// handlers) should call this implementation after doing their own work.
virtual net::URLRequestContextGetter* CreateRequestContext(
content::BrowserContext*, content::ProtocolHandlerMap*) OVERRIDE;
private:
virtual content::BrowserMainParts* CreateBrowserMainParts(const content::MainFunctionParams&) OVERRIDE;
virtual content::BrowserMainParts* CreateBrowserMainParts(
const content::MainFunctionParams&) OVERRIDE;
virtual void ShowDesktopNotification(
const content::ShowDesktopNotificationHostMsgParams&,
int render_process_id,
@ -52,6 +56,6 @@ private:
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
};
}
} // namespace brightray
#endif