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

Unified Diff: Source/core/inspector/InspectorBaseAgent.h

Issue 638553002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Nits 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
« no previous file with comments | « Source/core/inspector/InspectorApplicationCacheAgent.h ('k') | Source/core/inspector/InspectorCSSAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorBaseAgent.h
diff --git a/Source/core/inspector/InspectorBaseAgent.h b/Source/core/inspector/InspectorBaseAgent.h
index 5fa720ef5571691e40a905e68e70216fab77f79b..04075963dc57664c0a8aa2324b0343d0af5acd46 100644
--- a/Source/core/inspector/InspectorBaseAgent.h
+++ b/Source/core/inspector/InspectorBaseAgent.h
@@ -71,7 +71,7 @@ private:
String m_name;
};
-class InspectorAgentRegistry FINAL {
+class InspectorAgentRegistry final {
DISALLOW_ALLOCATION();
public:
InspectorAgentRegistry(InstrumentingAgents*, InspectorCompositeState*);
@@ -98,7 +98,7 @@ class InspectorBaseAgent : public InspectorAgent {
public:
virtual ~InspectorBaseAgent() { }
- virtual void registerInDispatcher(InspectorBackendDispatcher* dispatcher) OVERRIDE FINAL
+ virtual void registerInDispatcher(InspectorBackendDispatcher* dispatcher) override final
{
dispatcher->registerAgent(static_cast<T*>(this));
}
« no previous file with comments | « Source/core/inspector/InspectorApplicationCacheAgent.h ('k') | Source/core/inspector/InspectorCSSAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698