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

Unified Diff: third_party/WebKit/Source/core/workers/AbstractWorker.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/workers/AbstractWorker.h
diff --git a/third_party/WebKit/Source/core/workers/AbstractWorker.h b/third_party/WebKit/Source/core/workers/AbstractWorker.h
index d88771d3269bc6c6eb298b2e1978d7182b1bbaac..7cc39be49649074e6c1c9db3e439bcee104dae5d 100644
--- a/third_party/WebKit/Source/core/workers/AbstractWorker.h
+++ b/third_party/WebKit/Source/core/workers/AbstractWorker.h
@@ -32,7 +32,7 @@
#define AbstractWorker_h
#include "core/CoreExport.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "core/events/EventListener.h"
#include "core/events/EventTarget.h"
#include "platform/heap/Handle.h"
@@ -45,13 +45,13 @@ class KURL;
class ExecutionContext;
class CORE_EXPORT AbstractWorker : public EventTargetWithInlineData,
- public ActiveDOMObject {
+ public SuspendableObject {
USING_GARBAGE_COLLECTED_MIXIN(AbstractWorker);
public:
// EventTarget APIs
ExecutionContext* getExecutionContext() const final {
- return ActiveDOMObject::getExecutionContext();
+ return SuspendableObject::getExecutionContext();
}
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(error);

Powered by Google App Engine
This is Rietveld 408576698