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

Unified Diff: Source/web/InspectorClientImpl.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/IDBFactoryBackendProxy.h ('k') | Source/web/InspectorFrontendClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/InspectorClientImpl.h
diff --git a/Source/web/InspectorClientImpl.h b/Source/web/InspectorClientImpl.h
index 20b8e74e82a5d4fac52da6a1a6c93df50c0e3f96..e402d46c944bad030b3046366fd4bf6e60eb5973 100644
--- a/Source/web/InspectorClientImpl.h
+++ b/Source/web/InspectorClientImpl.h
@@ -42,40 +42,39 @@ class WebDevToolsAgentClient;
class WebDevToolsAgentImpl;
class WebViewImpl;
-class InspectorClientImpl : public WebCore::InspectorClient,
- public WebCore::InspectorFrontendChannel {
+class InspectorClientImpl FINAL : public WebCore::InspectorClient, public WebCore::InspectorFrontendChannel {
public:
explicit InspectorClientImpl(WebViewImpl*);
- ~InspectorClientImpl();
+ virtual ~InspectorClientImpl();
// InspectorClient methods:
- virtual void highlight();
- virtual void hideHighlight();
+ virtual void highlight() OVERRIDE;
+ virtual void hideHighlight() OVERRIDE;
- virtual bool sendMessageToFrontend(const WTF::String&);
+ virtual bool sendMessageToFrontend(const WTF::String&) OVERRIDE;
- virtual void updateInspectorStateCookie(const WTF::String&);
+ virtual void updateInspectorStateCookie(const WTF::String&) OVERRIDE;
- virtual void clearBrowserCache();
- virtual void clearBrowserCookies();
+ virtual void clearBrowserCache() OVERRIDE;
+ virtual void clearBrowserCookies() OVERRIDE;
- virtual void overrideDeviceMetrics(int, int, float, bool, bool);
+ virtual void overrideDeviceMetrics(int, int, float, bool, bool) OVERRIDE;
- virtual bool overridesShowPaintRects();
- virtual void setShowPaintRects(bool);
- virtual void setShowDebugBorders(bool);
- virtual void setShowFPSCounter(bool);
- virtual void setContinuousPaintingEnabled(bool);
- virtual void setShowScrollBottleneckRects(bool);
- virtual void requestPageScaleFactor(float scale, const WebCore::IntPoint& origin);
+ virtual bool overridesShowPaintRects() OVERRIDE;
+ virtual void setShowPaintRects(bool) OVERRIDE;
+ virtual void setShowDebugBorders(bool) OVERRIDE;
+ virtual void setShowFPSCounter(bool) OVERRIDE;
+ virtual void setContinuousPaintingEnabled(bool) OVERRIDE;
+ virtual void setShowScrollBottleneckRects(bool) OVERRIDE;
+ virtual void requestPageScaleFactor(float scale, const WebCore::IntPoint& origin) OVERRIDE;
- virtual void getAllocatedObjects(HashSet<const void*>&);
- virtual void dumpUncountedAllocatedObjects(const HashMap<const void*, size_t>&);
+ virtual void getAllocatedObjects(HashSet<const void*>&) OVERRIDE;
+ virtual void dumpUncountedAllocatedObjects(const HashMap<const void*, size_t>&) OVERRIDE;
- virtual void dispatchKeyEvent(const WebCore::PlatformKeyboardEvent&);
- virtual void dispatchMouseEvent(const WebCore::PlatformMouseEvent&);
+ virtual void dispatchKeyEvent(const WebCore::PlatformKeyboardEvent&) OVERRIDE;
+ virtual void dispatchMouseEvent(const WebCore::PlatformMouseEvent&) OVERRIDE;
- virtual void setTraceEventCallback(TraceEventCallback);
+ virtual void setTraceEventCallback(TraceEventCallback) OVERRIDE;
virtual void startGPUEventsRecording() OVERRIDE;
virtual void stopGPUEventsRecording() OVERRIDE;
« no previous file with comments | « Source/web/IDBFactoryBackendProxy.h ('k') | Source/web/InspectorFrontendClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698