| 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 324670556987ffee6f59a3ce241c61c8501d5326..f60bda9eb7c27a23325671cc06744bdfd30bf5ca 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)
|
| - : ContextLifecycleObserver(context)
|
| + : ActiveDOMObject(context)
|
| {
|
| }
|
|
|
| @@ -73,7 +73,7 @@
|
| DEFINE_TRACE(AbstractWorker)
|
| {
|
| RefCountedGarbageCollectedEventTargetWithInlineData<AbstractWorker>::trace(visitor);
|
| - ContextLifecycleObserver::trace(visitor);
|
| + ActiveDOMObject::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|