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

Unified Diff: third_party/WebKit/Source/core/dom/ExecutionContext.h

Issue 2254593002: [worklets] Introduce AnimationWorkletGlobalScope and ThreadedWorkletGlobalScope (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove global listing as no console output. Created 4 years, 4 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/dom/ExecutionContext.h
diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.h b/third_party/WebKit/Source/core/dom/ExecutionContext.h
index bd6b16df3a909cc47e6b4d537d1bcf426bc88b12..3e5e93136d4e25d0ec3c2c2956d7487b9dd9d08f 100644
--- a/third_party/WebKit/Source/core/dom/ExecutionContext.h
+++ b/third_party/WebKit/Source/core/dom/ExecutionContext.h
@@ -78,7 +78,9 @@ public:
virtual bool isSharedWorkerGlobalScope() const { return false; }
virtual bool isServiceWorkerGlobalScope() const { return false; }
virtual bool isCompositorWorkerGlobalScope() const { return false; }
+ virtual bool isAnimationWorkletGlobalScope() const { return false; }
virtual bool isPaintWorkletGlobalScope() const { return false; }
+ virtual bool isThreadedWorkletGlobalScope() const { return false; }
virtual bool isJSExecutionForbidden() const { return false; }
virtual bool isContextThread() const { return true; }

Powered by Google App Engine
This is Rietveld 408576698