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

Unified Diff: third_party/WebKit/Source/core/workers/Worklet.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/Worklet.h
diff --git a/third_party/WebKit/Source/core/workers/Worklet.h b/third_party/WebKit/Source/core/workers/Worklet.h
index 2bb63bed96e86b3f81ec7cca2dc91f001fad5ba8..1efcf0be2978bfec355b1c88211e8e7f733f2e0f 100644
--- a/third_party/WebKit/Source/core/workers/Worklet.h
+++ b/third_party/WebKit/Source/core/workers/Worklet.h
@@ -8,7 +8,7 @@
#include "bindings/core/v8/ScriptPromise.h"
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "core/loader/resource/ScriptResource.h"
#include "platform/heap/Handle.h"
@@ -21,7 +21,7 @@ class WorkletScriptLoader;
class CORE_EXPORT Worklet : public GarbageCollectedFinalized<Worklet>,
public ScriptWrappable,
- public ActiveDOMObject {
+ public SuspendableObject {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(Worklet);
WTF_MAKE_NONCOPYABLE(Worklet);
@@ -37,7 +37,7 @@ class CORE_EXPORT Worklet : public GarbageCollectedFinalized<Worklet>,
void notifyFinished(WorkletScriptLoader*);
- // ActiveDOMObject
+ // SuspendableObject
void contextDestroyed() final;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698