Index: Source/core/inspector/WorkerConsoleAgent.h |
diff --git a/Source/core/inspector/WorkerConsoleAgent.h b/Source/core/inspector/WorkerConsoleAgent.h |
index e886da701009d2b540c4b645f0bc7f8a1f23210b..cbb1cb1f22786a67cead02bc820da46105401d54 100644 |
--- a/Source/core/inspector/WorkerConsoleAgent.h |
+++ b/Source/core/inspector/WorkerConsoleAgent.h |
@@ -36,7 +36,7 @@ |
namespace WebCore { |
-class WorkerConsoleAgent : public InspectorConsoleAgent { |
+class WorkerConsoleAgent FINAL : public InspectorConsoleAgent { |
WTF_MAKE_NONCOPYABLE(WorkerConsoleAgent); |
public: |
static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent* timelineAgent, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager) |
@@ -49,7 +49,7 @@ public: |
private: |
WorkerConsoleAgent(InstrumentingAgents*, InspectorTimelineAgent*, InspectorCompositeState*, InjectedScriptManager*); |
- virtual void addInspectedNode(ErrorString*, int nodeId); |
+ virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE; |
}; |
} // namespace WebCore |