| 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;
|
|
|