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

Unified Diff: Source/core/layout/FloatingObjects.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/ClipPathOperation.h ('k') | Source/core/layout/ImageQualityControllerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/FloatingObjects.cpp
diff --git a/Source/core/layout/FloatingObjects.cpp b/Source/core/layout/FloatingObjects.cpp
index 778cdf15793e2b624fbc39e02afded7e848e1cb9..8a256450277ada037dfc732736a7d44c29299003 100644
--- a/Source/core/layout/FloatingObjects.cpp
+++ b/Source/core/layout/FloatingObjects.cpp
@@ -140,12 +140,12 @@ public:
{
}
- virtual ~ComputeFloatOffsetForFloatLayoutAdapter() { }
+ ~ComputeFloatOffsetForFloatLayoutAdapter() override { }
LayoutUnit heightRemaining() const;
protected:
- virtual bool updateOffsetIfNeeded(const FloatingObject&) override final;
+ bool updateOffsetIfNeeded(const FloatingObject&) final;
};
template <FloatingObject::Type FloatTypeValue>
@@ -156,10 +156,10 @@ public:
{
}
- virtual ~ComputeFloatOffsetForLineLayoutAdapter() { }
+ ~ComputeFloatOffsetForLineLayoutAdapter() override { }
protected:
- virtual bool updateOffsetIfNeeded(const FloatingObject&) override final;
+ bool updateOffsetIfNeeded(const FloatingObject&) final;
};
« no previous file with comments | « Source/core/layout/ClipPathOperation.h ('k') | Source/core/layout/ImageQualityControllerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698