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

Unified Diff: Source/core/layout/LayoutApplet.h

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/ImageQualityControllerTest.cpp ('k') | Source/core/layout/LayoutBR.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutApplet.h
diff --git a/Source/core/layout/LayoutApplet.h b/Source/core/layout/LayoutApplet.h
index 2a08d9a5f0c78001b0133cc0b81963eea9d16c72..741c1fc5ea4a8781efcb3579decf6eeb318010f4 100644
--- a/Source/core/layout/LayoutApplet.h
+++ b/Source/core/layout/LayoutApplet.h
@@ -31,9 +31,9 @@ class HTMLAppletElement;
class LayoutApplet final : public LayoutEmbeddedObject {
public:
explicit LayoutApplet(HTMLAppletElement*);
- virtual ~LayoutApplet();
+ ~LayoutApplet() override;
- virtual const char* name() const override { return "LayoutApplet"; }
+ const char* name() const override { return "LayoutApplet"; }
};
} // namespace blink
« no previous file with comments | « Source/core/layout/ImageQualityControllerTest.cpp ('k') | Source/core/layout/LayoutBR.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698