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

Unified Diff: Source/core/css/Counter.h

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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/css/CSSValuePool.cpp ('k') | Source/core/css/FontFace.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/Counter.h
diff --git a/Source/core/css/Counter.h b/Source/core/css/Counter.h
index d27ff184e788ef5b9b324dfa87357291bca48ade..a6d5bc4ad20af8ed55d24173e4c46f225da773c0 100644
--- a/Source/core/css/Counter.h
+++ b/Source/core/css/Counter.h
@@ -53,9 +53,9 @@ public:
PassRefPtrWillBeRawPtr<Counter> cloneForCSSOM() const
{
- return create(m_identifier ? m_identifier->cloneForCSSOM() : 0
- , m_listStyle ? m_listStyle->cloneForCSSOM() : 0
- , m_separator ? m_separator->cloneForCSSOM() : 0);
+ return create(m_identifier ? m_identifier->cloneForCSSOM() : nullptr
+ , m_listStyle ? m_listStyle->cloneForCSSOM() : nullptr
+ , m_separator ? m_separator->cloneForCSSOM() : nullptr);
}
void trace(Visitor*);
« no previous file with comments | « Source/core/css/CSSValuePool.cpp ('k') | Source/core/css/FontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698