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

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

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.h
diff --git a/third_party/WebKit/Source/core/streams/Stream.h b/third_party/WebKit/Source/core/streams/Stream.h
index 1c2c780b48b6fd735b5140dc4004587c095849db..781d4e70c9608a7f103ed9bdd5f8e8894989a550 100644
--- a/third_party/WebKit/Source/core/streams/Stream.h
+++ b/third_party/WebKit/Source/core/streams/Stream.h
@@ -32,7 +32,7 @@
#define Stream_h
#include "core/CoreExport.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "platform/heap/Handle.h"
#include "platform/weborigin/KURL.h"
#include "wtf/text/WTFString.h"
@@ -42,7 +42,7 @@ namespace blink {
class ExecutionContext;
class CORE_EXPORT Stream final : public GarbageCollectedFinalized<Stream>,
- public ActiveDOMObject {
+ public SuspendableObject {
USING_GARBAGE_COLLECTED_MIXIN(Stream);
public:
@@ -76,7 +76,7 @@ class CORE_EXPORT Stream final : public GarbageCollectedFinalized<Stream>,
void neuter() { m_isNeutered = true; }
bool isNeutered() const { return m_isNeutered; }
- // Implementation of ActiveDOMObject.
+ // Implementation of SuspendableObject.
//
// FIXME: Implement suspend() and resume() when necessary.
void suspend() override;

Powered by Google App Engine
This is Rietveld 408576698