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

Unified Diff: third_party/WebKit/Source/core/workers/AbstractWorker.cpp

Issue 1765493002: Revert of Make AbstractWorker a ContextLifecycleObserver rather than an ActiveDOMObject (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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.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
« no previous file with comments | « third_party/WebKit/Source/core/workers/AbstractWorker.h ('k') | third_party/WebKit/Source/core/workers/InProcessWorkerBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698