Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1843)

Unified Diff: Source/core/testing/InspectorFrontendClientLocal.h

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/storage/StorageEvent.h ('k') | Source/core/testing/InternalSettings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/storage/StorageEvent.h ('k') | Source/core/testing/InternalSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698