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

Unified Diff: third_party/WebKit/Source/core/streams/Stream.cpp

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 years 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/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 38dea3af103c58c6aec492f7fb796bbb49edbf43..b81536670cccd8d63d2c40e36d02c071e99a1df8 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)
- : ActiveDOMObject(context), m_mediaType(mediaType), m_isNeutered(false) {
+ : SuspendableObject(context), m_mediaType(mediaType), m_isNeutered(false) {
// Create a new internal URL for a stream and register it with the provided
// media type.
m_internalURL = BlobURL::createInternalStreamURL();
@@ -77,7 +77,7 @@ void Stream::contextDestroyed() {
}
DEFINE_TRACE(Stream) {
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698