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

Unified Diff: Source/platform/graphics/paint/CachedDisplayItem.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/CachedDisplayItem.h
diff --git a/Source/platform/graphics/paint/CachedDisplayItem.h b/Source/platform/graphics/paint/CachedDisplayItem.h
index d7ee89820646b4797a6d0833128306a000536fed..7db5e491120859a0e4047288d893d0e578c2662e 100644
--- a/Source/platform/graphics/paint/CachedDisplayItem.h
+++ b/Source/platform/graphics/paint/CachedDisplayItem.h
@@ -23,8 +23,8 @@ public:
private:
// CachedDisplayItem is never replayed or appended to WebDisplayItemList.
- virtual void replay(GraphicsContext&) override final { ASSERT_NOT_REACHED(); }
- virtual void appendToWebDisplayItemList(WebDisplayItemList*) const override final { ASSERT_NOT_REACHED(); }
+ void replay(GraphicsContext&) final { ASSERT_NOT_REACHED(); }
+ void appendToWebDisplayItemList(WebDisplayItemList*) const final { ASSERT_NOT_REACHED(); }
};
} // namespace blink
« no previous file with comments | « Source/platform/graphics/gpu/DrawingBufferTest.cpp ('k') | Source/platform/graphics/paint/ClipDisplayItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698