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

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

Issue 1162383003: C++11: Replace 0 with nullptr where applicable in layout code. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add one more file. Created 5 years, 6 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/LayoutRubyBase.cpp ('k') | Source/core/layout/LayoutRubyRun.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutRubyRun.h
diff --git a/Source/core/layout/LayoutRubyRun.h b/Source/core/layout/LayoutRubyRun.h
index 7c2ba138f34174b2bb867915c0bba514fc0e1a7a..ad4a7b4a9e23e61ab62575eb73228780ab96b6e0 100644
--- a/Source/core/layout/LayoutRubyRun.h
+++ b/Source/core/layout/LayoutRubyRun.h
@@ -55,7 +55,7 @@ public:
virtual void layout() override;
virtual bool isChildAllowed(LayoutObject*, const ComputedStyle&) const override;
- virtual void addChild(LayoutObject* child, LayoutObject* beforeChild = 0) override;
+ virtual void addChild(LayoutObject* child, LayoutObject* beforeChild = nullptr) override;
virtual void removeChild(LayoutObject* child) override;
void getOverhang(bool firstLine, LayoutObject* startLayoutObject, LayoutObject* endLayoutObject, int& startOverhang, int& endOverhang) const;
« no previous file with comments | « Source/core/layout/LayoutRubyBase.cpp ('k') | Source/core/layout/LayoutRubyRun.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698