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

Unified Diff: Source/platform/graphics/GraphicsLayer.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (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
Index: Source/platform/graphics/GraphicsLayer.h
diff --git a/Source/platform/graphics/GraphicsLayer.h b/Source/platform/graphics/GraphicsLayer.h
index cdd4b3cbda38218fd71db0a64cd6cf7b3a6116a9..986e45d337927335fa8120c9a44624a96b242c0a 100644
--- a/Source/platform/graphics/GraphicsLayer.h
+++ b/Source/platform/graphics/GraphicsLayer.h
@@ -87,12 +87,12 @@ class PLATFORM_EXPORT GraphicsLayer : public GraphicsContextPainter, public WebC
public:
static PassOwnPtr<GraphicsLayer> create(GraphicsLayerFactory*, GraphicsLayerClient*);
- virtual ~GraphicsLayer();
+ ~GraphicsLayer() override;
GraphicsLayerClient* client() const { return m_client; }
// WebLayerClient implementation.
- virtual WebGraphicsLayerDebugInfo* takeDebugInfoFor(WebLayer*) override;
+ WebGraphicsLayerDebugInfo* takeDebugInfoFor(WebLayer*) override;
GraphicsLayerDebugInfo& debugInfo();
@@ -249,16 +249,16 @@ public:
static void unregisterContentsLayer(WebLayer*);
// GraphicsContextPainter implementation.
- virtual void paint(GraphicsContext&, const IntRect& clip) override;
+ void paint(GraphicsContext&, const IntRect& clip) 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;
// WebLayerScrollClient implementation.
- virtual void didScroll() override;
+ void didScroll() override;
- virtual DisplayItemList* displayItemList() override;
+ DisplayItemList* displayItemList() override;
// Exposed for tests.
virtual WebLayer* contentsLayer() const { return m_contentsLayer; }
« no previous file with comments | « Source/platform/graphics/GradientGeneratedImage.h ('k') | Source/platform/graphics/GraphicsLayerDebugInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698