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

Unified Diff: Source/core/rendering/RenderPagedFlowThread.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/rendering/RenderObject.h ('k') | Source/core/rendering/RenderPart.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderPagedFlowThread.h
diff --git a/Source/core/rendering/RenderPagedFlowThread.h b/Source/core/rendering/RenderPagedFlowThread.h
index d20d7bb32c8935a03488e8b1384d6a699ca73d12..da41adc708cd17c64735f96e353a4a160be8427f 100644
--- a/Source/core/rendering/RenderPagedFlowThread.h
+++ b/Source/core/rendering/RenderPagedFlowThread.h
@@ -19,11 +19,11 @@ public:
RenderBlockFlow* pagedBlockFlow() const { return toRenderBlockFlow(parent()); }
- virtual bool isRenderPagedFlowThread() const OVERRIDE { return true; }
- virtual bool heightIsAuto() const OVERRIDE { return !columnHeightAvailable(); }
- virtual const char* renderName() const OVERRIDE;
- virtual bool needsNewWidth() const OVERRIDE;
- virtual void updateLogicalWidth() OVERRIDE;
+ virtual bool isRenderPagedFlowThread() const override { return true; }
+ virtual bool heightIsAuto() const override { return !columnHeightAvailable(); }
+ virtual const char* renderName() const override;
+ virtual bool needsNewWidth() const override;
+ virtual void updateLogicalWidth() override;
virtual void layout();
};
« no previous file with comments | « Source/core/rendering/RenderObject.h ('k') | Source/core/rendering/RenderPart.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698