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

Unified Diff: Source/core/inspector/InspectorState.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/InspectorRuntimeAgent.h ('k') | Source/core/inspector/InspectorStyleSheet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorState.h
diff --git a/Source/core/inspector/InspectorState.h b/Source/core/inspector/InspectorState.h
index 837be0aa83cac3091a44a86973245d1f9c9732c7..3bd38152637b25a475f3f117a0f73b9ca6f8b5a6 100644
--- a/Source/core/inspector/InspectorState.h
+++ b/Source/core/inspector/InspectorState.h
@@ -47,7 +47,7 @@ public:
virtual void inspectorStateUpdated() = 0;
};
-class InspectorState FINAL : public NoBaseWillBeGarbageCollectedFinalized<InspectorState> {
+class InspectorState final : public NoBaseWillBeGarbageCollectedFinalized<InspectorState> {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
InspectorState(InspectorStateUpdateListener*, PassRefPtr<JSONObject>);
@@ -88,7 +88,7 @@ private:
RefPtr<JSONObject> m_properties;
};
-class InspectorCompositeState FINAL : public NoBaseWillBeGarbageCollectedFinalized<InspectorCompositeState>, public InspectorStateUpdateListener {
+class InspectorCompositeState final : public NoBaseWillBeGarbageCollectedFinalized<InspectorCompositeState>, public InspectorStateUpdateListener {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorCompositeState);
public:
InspectorCompositeState(InspectorStateClient* inspectorClient)
@@ -110,7 +110,7 @@ private:
typedef WillBeHeapHashMap<String, OwnPtrWillBeMember<InspectorState> > InspectorStateMap;
// From InspectorStateUpdateListener.
- virtual void inspectorStateUpdated() OVERRIDE;
+ virtual void inspectorStateUpdated() override;
InspectorStateClient* m_client;
RefPtr<JSONObject> m_stateObject;
« no previous file with comments | « Source/core/inspector/InspectorRuntimeAgent.h ('k') | Source/core/inspector/InspectorStyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698