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

Unified Diff: Source/web/InspectorFrontendClientImpl.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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/web/InspectorClientImpl.h ('k') | Source/web/LinkHighlight.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/InspectorFrontendClientImpl.h
diff --git a/Source/web/InspectorFrontendClientImpl.h b/Source/web/InspectorFrontendClientImpl.h
index 3fbf6cb58b1b13fa8a6328cb27932be913311bf1..930b55a811d859685f86b6fb67145633236984ef 100644
--- a/Source/web/InspectorFrontendClientImpl.h
+++ b/Source/web/InspectorFrontendClientImpl.h
@@ -44,22 +44,22 @@ 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 inspectedURLChanged(const WTF::String&) OVERRIDE;
- virtual void sendMessageToBackend(const WTF::String&);
+ virtual void sendMessageToBackend(const WTF::String&) OVERRIDE;
- virtual void sendMessageToEmbedder(const WTF::String&);
+ virtual void sendMessageToEmbedder(const WTF::String&) OVERRIDE;
- virtual bool isUnderTest();
+ virtual bool isUnderTest() OVERRIDE;
private:
WebCore::Page* m_frontendPage;
« no previous file with comments | « Source/web/InspectorClientImpl.h ('k') | Source/web/LinkHighlight.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698