Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: extensions/shell/browser/shell_content_browser_client.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: extensions/shell/browser/shell_content_browser_client.h
diff --git a/extensions/shell/browser/shell_content_browser_client.h b/extensions/shell/browser/shell_content_browser_client.h
index a5d8b66628913485f3c5dcad6bc3844681f995ec..2ca2bae9a6482490dcb5feea366470311c8c4cc1 100644
--- a/extensions/shell/browser/shell_content_browser_client.h
+++ b/extensions/shell/browser/shell_content_browser_client.h
@@ -38,30 +38,30 @@ class ShellContentBrowserClient : public content::ContentBrowserClient {
// content::ContentBrowserClient overrides.
virtual content::BrowserMainParts* CreateBrowserMainParts(
- const content::MainFunctionParams& parameters) OVERRIDE;
+ const content::MainFunctionParams& parameters) override;
virtual void RenderProcessWillLaunch(
- content::RenderProcessHost* host) OVERRIDE;
+ content::RenderProcessHost* host) override;
virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context,
- const GURL& effective_url) OVERRIDE;
+ const GURL& effective_url) override;
virtual net::URLRequestContextGetter* CreateRequestContext(
content::BrowserContext* browser_context,
content::ProtocolHandlerMap* protocol_handlers,
- content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE;
+ content::URLRequestInterceptorScopedVector request_interceptors) override;
// TODO(jamescook): Quota management?
// TODO(jamescook): Speech recognition?
- virtual bool IsHandledURL(const GURL& url) OVERRIDE;
+ virtual bool IsHandledURL(const GURL& url) override;
virtual void SiteInstanceGotProcess(
- content::SiteInstance* site_instance) OVERRIDE;
+ content::SiteInstance* site_instance) override;
virtual void SiteInstanceDeleting(
- content::SiteInstance* site_instance) OVERRIDE;
+ content::SiteInstance* site_instance) override;
virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
- int child_process_id) OVERRIDE;
+ int child_process_id) override;
virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost(
- int plugin_process_id) OVERRIDE;
+ int plugin_process_id) override;
virtual void GetAdditionalAllowedSchemesForFileSystem(
- std::vector<std::string>* additional_schemes) OVERRIDE;
+ std::vector<std::string>* additional_schemes) override;
virtual content::DevToolsManagerDelegate*
- GetDevToolsManagerDelegate() OVERRIDE;
+ GetDevToolsManagerDelegate() override;
private:
// Appends command line switches for a renderer process.
« no previous file with comments | « extensions/shell/browser/shell_browser_main_parts.h ('k') | extensions/shell/browser/shell_desktop_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698