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

Unified Diff: Source/web/InspectorOverlayImpl.cpp

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/IndexedDBClientImpl.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/InspectorOverlayImpl.cpp
diff --git a/Source/web/InspectorOverlayImpl.cpp b/Source/web/InspectorOverlayImpl.cpp
index d8b827a1e8a1ff37d96fa15080ba7980daf29948..aaa5205f6741de4b3196138229524c15e1107bf4 100644
--- a/Source/web/InspectorOverlayImpl.cpp
+++ b/Source/web/InspectorOverlayImpl.cpp
@@ -70,17 +70,17 @@ public:
, m_overlay(overlay)
{ }
- virtual void setCursor(const Cursor& cursor) override
+ void setCursor(const Cursor& cursor) override
{
m_client.setCursor(cursor);
}
- virtual void setToolTip(const String& tooltip, TextDirection direction) override
+ void setToolTip(const String& tooltip, TextDirection direction) override
{
m_client.setToolTip(tooltip, direction);
}
- virtual void invalidateRect(const IntRect&) override
+ void invalidateRect(const IntRect&) override
{
m_overlay->invalidate();
}
« no previous file with comments | « Source/web/IndexedDBClientImpl.h ('k') | Source/web/LinkHighlight.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698