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

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

Issue 135703002: Update inspector classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No change under web/ Created 6 years, 11 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/InspectorTimelineAgent.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 d9faea7bdfecc032dd3de86f37a2013cd9a22bdb..353423e8bd2d38301c8d269a18c96c89dbae87a6 100644
--- a/Source/core/inspector/InspectorState.h
+++ b/Source/core/inspector/InspectorState.h
@@ -84,7 +84,7 @@ private:
RefPtr<JSONObject> m_properties;
};
-class InspectorCompositeState : public InspectorStateUpdateListener {
+class InspectorCompositeState FINAL : public InspectorStateUpdateListener {
public:
InspectorCompositeState(InspectorStateClient* inspectorClient)
: m_client(inspectorClient)
@@ -104,7 +104,7 @@ private:
typedef HashMap<String, OwnPtr<InspectorState> > InspectorStateMap;
// From InspectorStateUpdateListener.
- virtual void inspectorStateUpdated();
+ 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/InspectorTimelineAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698