| Index: Source/core/inspector/InspectorAgent.h
|
| diff --git a/Source/core/inspector/InspectorAgent.h b/Source/core/inspector/InspectorAgent.h
|
| index 789e00220eaad400ab694321e51f35c855c041bf..fbff46a2fd1b3977b1cdd7010a99bb7425edfd0f 100644
|
| --- a/Source/core/inspector/InspectorAgent.h
|
| +++ b/Source/core/inspector/InspectorAgent.h
|
| @@ -48,7 +48,7 @@ class Page;
|
|
|
| typedef String ErrorString;
|
|
|
| -class InspectorAgent : public InspectorBaseAgent<InspectorAgent>, public InspectorBackendDispatcher::InspectorCommandHandler {
|
| +class InspectorAgent FINAL : public InspectorBaseAgent<InspectorAgent>, public InspectorBackendDispatcher::InspectorCommandHandler {
|
| WTF_MAKE_NONCOPYABLE(InspectorAgent);
|
| public:
|
| static PassOwnPtr<InspectorAgent> create(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
|
| @@ -63,8 +63,8 @@ public:
|
| void disable(ErrorString*);
|
| void reset(ErrorString*);
|
|
|
| - virtual void setFrontend(InspectorFrontend*);
|
| - virtual void clearFrontend();
|
| + virtual void setFrontend(InspectorFrontend*) OVERRIDE;
|
| + virtual void clearFrontend() OVERRIDE;
|
|
|
| void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
|
|
|
|
|