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

Unified Diff: Source/platform/exported/WebRTCStatsResponse.cpp

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: toRefPtrWillBeMemberNativeArray Created 6 years, 8 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/platform/exported/WebRTCStatsResponse.cpp
diff --git a/Source/platform/exported/WebRTCStatsResponse.cpp b/Source/platform/exported/WebRTCStatsResponse.cpp
index a0fb916f2140db2eb59e479600eeb0482e799ca9..b53b7a0cb3dcdfa6d90fe47a15393f16e0272481 100644
--- a/Source/platform/exported/WebRTCStatsResponse.cpp
+++ b/Source/platform/exported/WebRTCStatsResponse.cpp
@@ -33,7 +33,7 @@ using namespace WebCore;
namespace blink {
-WebRTCStatsResponse::WebRTCStatsResponse(const PassRefPtr<RTCStatsResponseBase>& request)
+WebRTCStatsResponse::WebRTCStatsResponse(const PassRefPtrWillBeRawPtr<RTCStatsResponseBase>& request)
: m_private(request)
{
}
@@ -48,7 +48,7 @@ void WebRTCStatsResponse::reset()
m_private.reset();
}
-WebRTCStatsResponse::operator WTF::PassRefPtr<WebCore::RTCStatsResponseBase>() const
+PassRefPtrWillBeRawPtr<WebCore::RTCStatsResponseBase> WebRTCStatsResponse::getValue() const
sof 2014/04/07 14:22:16 I think it was decided last week to stick with an
keishi 2014/04/11 20:03:06 Done.
{
return m_private.get();
}

Powered by Google App Engine
This is Rietveld 408576698