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

Unified Diff: Source/modules/mediastream/RTCStatsResponse.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
Index: Source/modules/mediastream/RTCStatsResponse.cpp
diff --git a/Source/modules/mediastream/RTCStatsResponse.cpp b/Source/modules/mediastream/RTCStatsResponse.cpp
index 7da82b1c9d31ce994365431d683139b0af77570c..626546882b2349bac87eed50078e482bdacb9d50 100644
--- a/Source/modules/mediastream/RTCStatsResponse.cpp
+++ b/Source/modules/mediastream/RTCStatsResponse.cpp
@@ -42,7 +42,7 @@ PassRefPtr<RTCStatsReport> RTCStatsResponse::namedItem(const AtomicString& name)
{
if (m_idmap.find(name) != m_idmap.end())
return m_result[m_idmap.get(name)];
- return 0;
+ return nullptr;
}
size_t RTCStatsResponse::addReport(String id, String type, double timestamp)
« no previous file with comments | « Source/modules/mediastream/RTCSessionDescription.cpp ('k') | Source/modules/mediastream/UserMediaRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698