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

Unified Diff: Source/web/LinkHighlight.h

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/InspectorOverlayImpl.cpp ('k') | Source/web/LocalFileSystemClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/LinkHighlight.h
diff --git a/Source/web/LinkHighlight.h b/Source/web/LinkHighlight.h
index d4d2359cfe3b7cc146b144485de4e131e50b849f..09bba690b78f35480c76785a8d6935aafcaea53c 100644
--- a/Source/web/LinkHighlight.h
+++ b/Source/web/LinkHighlight.h
@@ -47,7 +47,7 @@ class WebViewImpl;
class LinkHighlight final : public WebContentLayerClient, public WebCompositorAnimationDelegate, LinkHighlightClient {
public:
static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*);
- virtual ~LinkHighlight();
+ ~LinkHighlight() override;
WebContentLayer* contentLayer();
WebLayer* clipLayer();
@@ -55,17 +55,17 @@ public:
void updateGeometry();
// WebContentLayerClient implementation.
- virtual void paintContents(WebCanvas*, const WebRect& clipRect, WebContentLayerClient::PaintingControlSetting) override;
- virtual void paintContents(WebDisplayItemList*, const WebRect& clipRect, WebContentLayerClient::PaintingControlSetting) override;
+ void paintContents(WebCanvas*, const WebRect& clipRect, WebContentLayerClient::PaintingControlSetting) override;
+ void paintContents(WebDisplayItemList*, const WebRect& clipRect, WebContentLayerClient::PaintingControlSetting) override;
// WebCompositorAnimationDelegate implementation.
- virtual void notifyAnimationStarted(double monotonicTime, int group) override;
- virtual void notifyAnimationFinished(double monotonicTime, int group) override;
+ void notifyAnimationStarted(double monotonicTime, int group) override;
+ void notifyAnimationFinished(double monotonicTime, int group) override;
// LinkHighlightClient implementation.
- virtual void invalidate() override;
- virtual WebLayer* layer() override;
- virtual void clearCurrentGraphicsLayer() override;
+ void invalidate() override;
+ WebLayer* layer() override;
+ void clearCurrentGraphicsLayer() override;
GraphicsLayer* currentGraphicsLayerForTesting() const { return m_currentGraphicsLayer; }
« no previous file with comments | « Source/web/InspectorOverlayImpl.cpp ('k') | Source/web/LocalFileSystemClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698