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

Unified Diff: extensions/shell/renderer/shell_content_renderer_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/renderer/shell_content_renderer_client.h
diff --git a/extensions/shell/renderer/shell_content_renderer_client.h b/extensions/shell/renderer/shell_content_renderer_client.h
index c040e8e0e923bd726feae29978937736b125f9c5..291af16aaf11c296ff3de1e1199833157c8edb0c 100644
--- a/extensions/shell/renderer/shell_content_renderer_client.h
+++ b/extensions/shell/renderer/shell_content_renderer_client.h
@@ -25,32 +25,32 @@ class ShellContentRendererClient : public content::ContentRendererClient {
virtual ~ShellContentRendererClient();
// content::ContentRendererClient implementation:
- virtual void RenderThreadStarted() OVERRIDE;
- virtual void RenderFrameCreated(content::RenderFrame* render_frame) OVERRIDE;
- virtual void RenderViewCreated(content::RenderView* render_view) OVERRIDE;
+ virtual void RenderThreadStarted() override;
+ virtual void RenderFrameCreated(content::RenderFrame* render_frame) override;
+ virtual void RenderViewCreated(content::RenderView* render_view) override;
virtual bool OverrideCreatePlugin(content::RenderFrame* render_frame,
blink::WebLocalFrame* frame,
const blink::WebPluginParams& params,
- blink::WebPlugin** plugin) OVERRIDE;
+ blink::WebPlugin** plugin) override;
virtual blink::WebPlugin* CreatePluginReplacement(
content::RenderFrame* render_frame,
- const base::FilePath& plugin_path) OVERRIDE;
+ const base::FilePath& plugin_path) override;
virtual bool WillSendRequest(blink::WebFrame* frame,
ui::PageTransition transition_type,
const GURL& url,
const GURL& first_party_for_cookies,
- GURL* new_url) OVERRIDE;
+ GURL* new_url) override;
virtual void DidCreateScriptContext(blink::WebFrame* frame,
v8::Handle<v8::Context> context,
int extension_group,
- int world_id) OVERRIDE;
+ int world_id) override;
virtual const void* CreatePPAPIInterface(
- const std::string& interface_name) OVERRIDE;
- virtual bool IsExternalPepperPlugin(const std::string& module_name) OVERRIDE;
- virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE;
+ const std::string& interface_name) override;
+ virtual bool IsExternalPepperPlugin(const std::string& module_name) override;
+ virtual bool ShouldEnableSiteIsolationPolicy() const override;
virtual content::BrowserPluginDelegate* CreateBrowserPluginDelegate(
content::RenderFrame* render_frame,
- const std::string& mime_type) OVERRIDE;
+ const std::string& mime_type) override;
private:
scoped_ptr<ShellExtensionsClient> extensions_client_;
« no previous file with comments | « extensions/shell/common/shell_extensions_client.cc ('k') | extensions/shell/renderer/shell_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698