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

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

Issue 2372303002: [worklets] Add AudioWorkletGlobalScope and AudioWorkletThread (Closed)
Patch Set: Add a unit test for AudioWorkletThread Created 4 years, 3 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 38563a031a4d1e06a4af4ff9ba644bef3acd3caa..4eb6803225b3d2367f74725297b135eec534226f 100644
--- a/third_party/WebKit/Source/core/dom/ExecutionContext.h
+++ b/third_party/WebKit/Source/core/dom/ExecutionContext.h
@@ -79,6 +79,7 @@ public:
virtual bool isServiceWorkerGlobalScope() const { return false; }
virtual bool isCompositorWorkerGlobalScope() const { return false; }
virtual bool isAnimationWorkletGlobalScope() const { return false; }
+ virtual bool isAudioWorkletGlobalScope() const { return false; }
virtual bool isPaintWorkletGlobalScope() const { return false; }
virtual bool isThreadedWorkletGlobalScope() const { return false; }
virtual bool isJSExecutionForbidden() const { return false; }

Powered by Google App Engine
This is Rietveld 408576698