| Index: Source/core/testing/InspectorFrontendClientLocal.h
|
| diff --git a/Source/core/testing/InspectorFrontendClientLocal.h b/Source/core/testing/InspectorFrontendClientLocal.h
|
| index a97b8d85005fe311d1a093e91449260f8bf9f2b5..4fa358021f882203c615e7110d0fcd363f3a8c05 100644
|
| --- a/Source/core/testing/InspectorFrontendClientLocal.h
|
| +++ b/Source/core/testing/InspectorFrontendClientLocal.h
|
| @@ -44,21 +44,21 @@ class InspectorBackendMessageQueue;
|
| class InspectorFrontendHost;
|
| class Page;
|
|
|
| -class InspectorFrontendClientLocal : public InspectorFrontendClient {
|
| +class InspectorFrontendClientLocal FINAL : public InspectorFrontendClient {
|
| WTF_MAKE_NONCOPYABLE(InspectorFrontendClientLocal); WTF_MAKE_FAST_ALLOCATED;
|
| public:
|
| InspectorFrontendClientLocal(InspectorController&, Page*);
|
| virtual ~InspectorFrontendClientLocal();
|
|
|
| - virtual void windowObjectCleared();
|
| + virtual void windowObjectCleared() OVERRIDE;
|
|
|
| virtual void inspectedURLChanged(const String&) OVERRIDE { }
|
|
|
| - virtual void sendMessageToBackend(const String& message);
|
| + virtual void sendMessageToBackend(const String& message) OVERRIDE;
|
|
|
| virtual void sendMessageToEmbedder(const String&) OVERRIDE { }
|
|
|
| - virtual bool isUnderTest() { return true; }
|
| + virtual bool isUnderTest() OVERRIDE { return true; }
|
|
|
| private:
|
| Page* m_frontendPage;
|
|
|