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

Unified Diff: Source/core/page/scrolling/ScrollingConstraints.h

Issue 634883002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/page/ScopedPageLoadDeferrer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/scrolling/ScrollingConstraints.h
diff --git a/Source/core/page/scrolling/ScrollingConstraints.h b/Source/core/page/scrolling/ScrollingConstraints.h
index 00e4db60174e0ed96126583a3a4fa295ce49d705..1eb79a9be5dbe7c246721febd85b53db02af37be 100644
--- a/Source/core/page/scrolling/ScrollingConstraints.h
+++ b/Source/core/page/scrolling/ScrollingConstraints.h
@@ -73,7 +73,7 @@ protected:
AnchorEdges m_anchorEdges;
};
-class FixedPositionViewportConstraints FINAL : public ViewportConstraints {
+class FixedPositionViewportConstraints final : public ViewportConstraints {
public:
FixedPositionViewportConstraints()
: ViewportConstraints()
@@ -104,7 +104,7 @@ public:
bool operator!=(const FixedPositionViewportConstraints& other) const { return !(*this == other); }
private:
- virtual ConstraintType constraintType() const OVERRIDE { return FixedPositionConstaint; }
+ virtual ConstraintType constraintType() const override { return FixedPositionConstaint; }
FloatRect m_viewportRectAtLastLayout;
FloatPoint m_layerPositionAtLastLayout;
« no previous file with comments | « Source/core/page/ScopedPageLoadDeferrer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698