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