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

Unified Diff: Source/platform/graphics/paint/DrawingDisplayItem.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/paint/DrawingDisplayItem.h
diff --git a/Source/platform/graphics/paint/DrawingDisplayItem.h b/Source/platform/graphics/paint/DrawingDisplayItem.h
index 0432462b0d0d1a1616d11b7b9875cec9355be3f1..f6fb613d93a0f0ac0f1c8642537748d5193da82a 100644
--- a/Source/platform/graphics/paint/DrawingDisplayItem.h
+++ b/Source/platform/graphics/paint/DrawingDisplayItem.h
@@ -39,8 +39,8 @@ public:
}
virtual void replay(GraphicsContext&);
- virtual void appendToWebDisplayItemList(WebDisplayItemList*) const override;
- virtual bool drawsContent() const override;
+ void appendToWebDisplayItemList(WebDisplayItemList*) const override;
+ bool drawsContent() const override;
const SkPicture* picture() const { return m_picture.get(); }
@@ -50,7 +50,7 @@ public:
private:
#ifndef NDEBUG
- virtual void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override;
+ void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override;
#endif
RefPtr<const SkPicture> m_picture;
« no previous file with comments | « Source/platform/graphics/paint/DisplayItemListTest.cpp ('k') | Source/platform/graphics/paint/FilterDisplayItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698