| 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);
|
|
|