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

Unified Diff: Source/modules/mediastream/RTCStatsReport.cpp

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 7 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/modules/mediastream/RTCStatsReport.h ('k') | Source/modules/mediastream/RTCStatsReport.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCStatsReport.cpp
diff --git a/Source/modules/mediastream/RTCStatsReport.cpp b/Source/modules/mediastream/RTCStatsReport.cpp
index 303ee9c8ee44a19de1c69c5a1435b8e8ca822298..34d0e59a5864a1e28fa50a1b64f345a1f1b00e7e 100644
--- a/Source/modules/mediastream/RTCStatsReport.cpp
+++ b/Source/modules/mediastream/RTCStatsReport.cpp
@@ -30,9 +30,9 @@
namespace WebCore {
-PassRefPtr<RTCStatsReport> RTCStatsReport::create(const String& id, const String& type, double timestamp)
+PassRefPtrWillBeRawPtr<RTCStatsReport> RTCStatsReport::create(const String& id, const String& type, double timestamp)
{
- return adoptRef(new RTCStatsReport(id, type, timestamp));
+ return adoptRefWillBeNoop(new RTCStatsReport(id, type, timestamp));
}
RTCStatsReport::RTCStatsReport(const String& id, const String& type, double timestamp)
@@ -52,12 +52,12 @@ Vector<String> RTCStatsReport::names() const
return result;
}
-const PassRefPtr<RTCStatsReport> RTCStatsReport::local()
+const PassRefPtrWillBeRawPtr<RTCStatsReport> RTCStatsReport::local()
{
return this;
}
-const PassRefPtr<RTCStatsReport> RTCStatsReport::remote()
+const PassRefPtrWillBeRawPtr<RTCStatsReport> RTCStatsReport::remote()
{
return this;
}
« no previous file with comments | « Source/modules/mediastream/RTCStatsReport.h ('k') | Source/modules/mediastream/RTCStatsReport.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698