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

Unified Diff: Source/core/layout/LayoutPartTest.cpp

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (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/core/layout/LayoutPart.h ('k') | Source/core/layout/LayoutProgress.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutPartTest.cpp
diff --git a/Source/core/layout/LayoutPartTest.cpp b/Source/core/layout/LayoutPartTest.cpp
index f93888d75b369a1fae468a7dccb16d10dbd5651f..9cc67a369cd24c03e12e08c779cf3e0f96a35345 100644
--- a/Source/core/layout/LayoutPartTest.cpp
+++ b/Source/core/layout/LayoutPartTest.cpp
@@ -19,7 +19,7 @@ class OverriddenLayoutPart : public LayoutPart {
public:
explicit OverriddenLayoutPart(Element* element) : LayoutPart(element) { }
- virtual const char* name() const override { return "OverriddenLayoutPart"; }
+ const char* name() const override { return "OverriddenLayoutPart"; }
};
TEST_F(LayoutPartTest, DestroyUpdatesImageQualityController)
« no previous file with comments | « Source/core/layout/LayoutPart.h ('k') | Source/core/layout/LayoutProgress.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698