summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h')
-rw-r--r--chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h b/chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h
index 3fbf6cb58b1..8b1cffe62aa 100644
--- a/chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h
+++ b/chromium/third_party/WebKit/Source/web/InspectorFrontendClientImpl.h
@@ -44,22 +44,20 @@ namespace blink {
class WebDevToolsFrontendClient;
class WebDevToolsFrontendImpl;
-class InspectorFrontendClientImpl : public WebCore::InspectorFrontendClient {
+class InspectorFrontendClientImpl FINAL : public WebCore::InspectorFrontendClient {
WTF_MAKE_NONCOPYABLE(InspectorFrontendClientImpl);
public:
InspectorFrontendClientImpl(WebCore::Page*, WebDevToolsFrontendClient*, WebDevToolsFrontendImpl*);
virtual ~InspectorFrontendClientImpl();
// InspectorFrontendClient methods:
- virtual void windowObjectCleared();
+ virtual void windowObjectCleared() OVERRIDE;
- virtual void inspectedURLChanged(const WTF::String&);
+ virtual void sendMessageToBackend(const WTF::String&) OVERRIDE;
- virtual void sendMessageToBackend(const WTF::String&);
+ virtual void sendMessageToEmbedder(const WTF::String&) OVERRIDE;
- virtual void sendMessageToEmbedder(const WTF::String&);
-
- virtual bool isUnderTest();
+ virtual bool isUnderTest() OVERRIDE;
private:
WebCore::Page* m_frontendPage;