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

Unified Diff: Source/core/layout/CounterNode.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/ClipRectsCache.h ('k') | Source/core/layout/CounterNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/CounterNode.h
diff --git a/Source/core/layout/CounterNode.h b/Source/core/layout/CounterNode.h
index 4be031f2678a2669697647449a08c0c292338adc..1790b94fdae73e9d7a42d54f49c3243d6f334acc 100644
--- a/Source/core/layout/CounterNode.h
+++ b/Source/core/layout/CounterNode.h
@@ -62,8 +62,8 @@ public:
CounterNode* lastChild() const { return m_lastChild; }
CounterNode* lastDescendant() const;
CounterNode* previousInPreOrder() const;
- CounterNode* nextInPreOrder(const CounterNode* stayWithin = 0) const;
- CounterNode* nextInPreOrderAfterChildren(const CounterNode* stayWithin = 0) const;
+ CounterNode* nextInPreOrder(const CounterNode* stayWithin = nullptr) const;
+ CounterNode* nextInPreOrderAfterChildren(const CounterNode* stayWithin = nullptr) const;
void insertAfter(CounterNode* newChild, CounterNode* beforeChild, const AtomicString& identifier);
« no previous file with comments | « Source/core/layout/ClipRectsCache.h ('k') | Source/core/layout/CounterNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698