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

Unified Diff: Source/web/WebFontImpl.cpp

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/web/WebDOMMediaStreamTrack.cpp ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFontImpl.cpp
diff --git a/Source/web/WebFontImpl.cpp b/Source/web/WebFontImpl.cpp
index 724146f16e11e77e23e0beb2a6b33ea5579b9de1..f6bffae825a0186a4c6aa1d3477d821790165a88 100644
--- a/Source/web/WebFontImpl.cpp
+++ b/Source/web/WebFontImpl.cpp
@@ -54,7 +54,7 @@ WebFont* WebFont::create(const WebFontDescription& desc)
WebFontImpl::WebFontImpl(const FontDescription& desc)
: m_font(desc)
{
- m_font.update(0);
+ m_font.update(nullptr);
}
WebFontDescription WebFontImpl::fontDescription() const
« no previous file with comments | « Source/web/WebDOMMediaStreamTrack.cpp ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698