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

Unified Diff: content/renderer/browser_plugin/browser_plugin_manager.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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: content/renderer/browser_plugin/browser_plugin_manager.h
diff --git a/content/renderer/browser_plugin/browser_plugin_manager.h b/content/renderer/browser_plugin/browser_plugin_manager.h
index c87c241d3b3221d8eb39c5c9e19ae26c7299cbaf..3793ae6886c99f15083ecbd4e75d79982a21f292 100644
--- a/content/renderer/browser_plugin/browser_plugin_manager.h
+++ b/content/renderer/browser_plugin/browser_plugin_manager.h
@@ -54,15 +54,15 @@ class CONTENT_EXPORT BrowserPluginManager
int GetNextInstanceID();
// RenderViewObserver override. Call on render thread.
- virtual void DidCommitCompositorFrame() OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual bool Send(IPC::Message* msg) OVERRIDE;
+ virtual void DidCommitCompositorFrame() override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual bool Send(IPC::Message* msg) override;
// Don't destroy the BrowserPluginManager when the RenderViewImpl goes away.
// BrowserPluginManager's lifetime is managed by a reference count. Once
// the host RenderViewImpl and all BrowserPlugins release their references,
// then the BrowserPluginManager will be destroyed.
- virtual void OnDestruct() OVERRIDE {}
+ virtual void OnDestruct() override {}
protected:
// Friend RefCounted so that the dtor can be non-public.
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.h ('k') | content/renderer/browser_render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698