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

Unified Diff: Source/core/layout/LayoutFullScreen.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/LayoutFullScreen.h ('k') | Source/core/layout/LayoutGrid.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutFullScreen.cpp
diff --git a/Source/core/layout/LayoutFullScreen.cpp b/Source/core/layout/LayoutFullScreen.cpp
index d23f7ee932b69abcea90078df0d6df98edab4bf3..917d64c197586b5e4f69e3e1fa0a0fc5255dd3c2 100644
--- a/Source/core/layout/LayoutFullScreen.cpp
+++ b/Source/core/layout/LayoutFullScreen.cpp
@@ -44,8 +44,8 @@ public:
setDocumentForAnonymous(&owner->document());
}
private:
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutFullScreenPlaceholder || LayoutBlockFlow::isOfType(type); }
- virtual void willBeDestroyed() override;
+ bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutFullScreenPlaceholder || LayoutBlockFlow::isOfType(type); }
+ void willBeDestroyed() override;
LayoutFullScreen* m_owner;
};
« no previous file with comments | « Source/core/layout/LayoutFullScreen.h ('k') | Source/core/layout/LayoutGrid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698