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

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

Issue 1166623002: Oilpan: Remove a visitor parameter from isHeapObjectAlive (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/mediasource/MediaSource.cpp ('k') | Source/platform/heap/GarbageCollected.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCDataChannel.cpp
diff --git a/Source/modules/mediastream/RTCDataChannel.cpp b/Source/modules/mediastream/RTCDataChannel.cpp
index 2fb38e7f52c9e8bdcdd43a7441f2c518b0ba7655..d380bcb953df240f7430ebf2ca2712dda7399843 100644
--- a/Source/modules/mediastream/RTCDataChannel.cpp
+++ b/Source/modules/mediastream/RTCDataChannel.cpp
@@ -326,7 +326,7 @@ void RTCDataChannel::scheduledEventTimerFired(Timer<RTCDataChannel>*)
void RTCDataChannel::clearWeakMembers(Visitor* visitor)
{
- if (visitor->isHeapObjectAlive(m_connection))
+ if (Heap::isHeapObjectAlive(m_connection))
return;
stop();
m_connection = nullptr;
« no previous file with comments | « Source/modules/mediasource/MediaSource.cpp ('k') | Source/platform/heap/GarbageCollected.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698