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

Unified Diff: Source/core/streams/ReadableStreamTest.cpp

Issue 835363003: Oilpan: add missing leftmost trace()s for GC mixins. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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/core/streams/ReadableStreamTest.cpp
diff --git a/Source/core/streams/ReadableStreamTest.cpp b/Source/core/streams/ReadableStreamTest.cpp
index 41b9719b5589cdf7e665e530b66aeeb5d0f3d114..6a73a5c4399909ca34366216c683b81b500f14aa 100644
--- a/Source/core/streams/ReadableStreamTest.cpp
+++ b/Source/core/streams/ReadableStreamTest.cpp
@@ -60,6 +60,10 @@ class MockUnderlyingSource : public GarbageCollectedFinalized<MockUnderlyingSour
USING_GARBAGE_COLLECTED_MIXIN(MockUnderlyingSource);
public:
~MockUnderlyingSource() override { }
+ virtual void trace(Visitor* visitor) override
+ {
+ UnderlyingSource::trace(visitor);
+ }
MOCK_METHOD0(pullSource, void());
MOCK_METHOD2(cancelSource, ScriptPromise(ScriptState*, ScriptValue));

Powered by Google App Engine
This is Rietveld 408576698