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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCStatsRequestImpl.cpp

Issue 1363143003: [Oilpan] Move MediaStream{Source|Component|Descriptor} to Oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes in PS8 Created 5 years, 2 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: third_party/WebKit/Source/modules/mediastream/RTCStatsRequestImpl.cpp
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCStatsRequestImpl.cpp b/third_party/WebKit/Source/modules/mediastream/RTCStatsRequestImpl.cpp
index eb0d28e14334188cfb3ff87813327acef0b93061..80012eac522c2e82118b17ea41e1f160a32cd356 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCStatsRequestImpl.cpp
+++ b/third_party/WebKit/Source/modules/mediastream/RTCStatsRequestImpl.cpp
@@ -63,7 +63,7 @@ bool RTCStatsRequestImpl::hasSelector()
MediaStreamComponent* RTCStatsRequestImpl::component()
{
- return m_component.get();
+ return m_component;
}
void RTCStatsRequestImpl::requestSucceeded(RTCStatsResponseBase* response)
@@ -88,6 +88,7 @@ void RTCStatsRequestImpl::clear()
DEFINE_TRACE(RTCStatsRequestImpl)
{
visitor->trace(m_successCallback);
+ visitor->trace(m_component);
visitor->trace(m_requester);
RTCStatsRequest::trace(visitor);
ActiveDOMObject::trace(visitor);

Powered by Google App Engine
This is Rietveld 408576698