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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) 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/WorkerGlobalScope.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
index 9059e9bd032285bc9e4d350c771092773c66de23..6cad1af7362405932499962270d3995d9811bbcd 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
@@ -55,12 +55,13 @@ class WorkerLocation;
class WorkerNavigator;
class WorkerThread;
-class CORE_EXPORT WorkerGlobalScope : public EventTargetWithInlineData,
- public ActiveScriptWrappable,
- public SecurityContext,
- public WorkerOrWorkletGlobalScope,
- public Supplementable<WorkerGlobalScope>,
- public DOMWindowBase64 {
+class CORE_EXPORT WorkerGlobalScope
+ : public EventTargetWithInlineData,
+ public ActiveScriptWrappable<WorkerGlobalScope>,
+ public SecurityContext,
+ public WorkerOrWorkletGlobalScope,
+ public Supplementable<WorkerGlobalScope>,
+ public DOMWindowBase64 {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScope);

Powered by Google App Engine
This is Rietveld 408576698