| Index: third_party/WebKit/Source/core/workers/AbstractWorker.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/AbstractWorker.cpp b/third_party/WebKit/Source/core/workers/AbstractWorker.cpp
|
| index b278a5fd4f8da8cc251f5f24828cb9a5deccc208..2cc20f4a8c19acb1a1c4b8bf22b94a671ec868c9 100644
|
| --- a/third_party/WebKit/Source/core/workers/AbstractWorker.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/AbstractWorker.cpp
|
| @@ -39,7 +39,7 @@
|
| namespace blink {
|
|
|
| AbstractWorker::AbstractWorker(ExecutionContext* context)
|
| - : SuspendableObject(context) {}
|
| + : ContextLifecycleObserver(context) {}
|
|
|
| AbstractWorker::~AbstractWorker() {}
|
|
|
| @@ -84,7 +84,7 @@ KURL AbstractWorker::resolveURL(const String& url,
|
|
|
| DEFINE_TRACE(AbstractWorker) {
|
| EventTargetWithInlineData::trace(visitor);
|
| - SuspendableObject::trace(visitor);
|
| + ContextLifecycleObserver::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|