Index: third_party/WebKit/Source/core/streams/Stream.cpp |
diff --git a/third_party/WebKit/Source/core/streams/Stream.cpp b/third_party/WebKit/Source/core/streams/Stream.cpp |
index c9dd69cddbbd3fe79a7c90c9e3b1e4d660e9a3df..16ac9c07ea0bb803a0df99120910950d78dac541 100644 |
--- a/third_party/WebKit/Source/core/streams/Stream.cpp |
+++ b/third_party/WebKit/Source/core/streams/Stream.cpp |
@@ -37,7 +37,7 @@ |
namespace blink { |
Stream::Stream(ExecutionContext* context, const String& mediaType) |
- : ContextLifecycleObserver(context) |
+ : ActiveDOMObject(context) |
, m_mediaType(mediaType) |
, m_isNeutered(false) |
{ |
@@ -75,7 +75,15 @@ |
BlobRegistry::unregisterStreamURL(m_internalURL); |
} |
-void Stream::contextDestroyed() |
+void Stream::suspend() |
+{ |
+} |
+ |
+void Stream::resume() |
+{ |
+} |
+ |
+void Stream::stop() |
{ |
neuter(); |
abort(); |
@@ -83,7 +91,7 @@ |
DEFINE_TRACE(Stream) |
{ |
- ContextLifecycleObserver::trace(visitor); |
+ ActiveDOMObject::trace(visitor); |
} |
} // namespace blink |