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

Unified Diff: third_party/WebKit/Source/modules/eventsource/EventSource.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/modules/eventsource/EventSource.h
diff --git a/third_party/WebKit/Source/modules/eventsource/EventSource.h b/third_party/WebKit/Source/modules/eventsource/EventSource.h
index dc5a54491f10aa89166d9c46a36e747ae7e06190..cfdcea36c574f71af6b5abe709c9e9f9e797fd40 100644
--- a/third_party/WebKit/Source/modules/eventsource/EventSource.h
+++ b/third_party/WebKit/Source/modules/eventsource/EventSource.h
@@ -33,7 +33,7 @@
#define EventSource_h
#include "bindings/core/v8/ActiveScriptWrappable.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "core/events/EventTarget.h"
#include "core/loader/ThreadableLoader.h"
#include "core/loader/ThreadableLoaderClient.h"
@@ -54,7 +54,7 @@ class ResourceResponse;
class MODULES_EXPORT EventSource final : public EventTargetWithInlineData,
private ThreadableLoaderClient,
public ActiveScriptWrappable,
- public ActiveDOMObject,
+ public SuspendableObject,
public EventSourceParser::Client {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(EventSource);
@@ -84,7 +84,7 @@ class MODULES_EXPORT EventSource final : public EventTargetWithInlineData,
const AtomicString& interfaceName() const override;
ExecutionContext* getExecutionContext() const override;
- // ActiveDOMObject
+ // SuspendableObject
//
// Note: suspend() is noop since ScopedPageLoadDeferrer calls
// Page::setDefersLoading() and it defers delivery of events from the

Powered by Google App Engine
This is Rietveld 408576698