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

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

Issue 2871513002: Worklet: Lazily create PaintWorkletGlobalScopes (Closed)
Patch Set: add class-level comments Created 3 years, 7 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/Worklet.h
diff --git a/third_party/WebKit/Source/core/workers/Worklet.h b/third_party/WebKit/Source/core/workers/Worklet.h
index 2131acfd639fe9f089037c837c9d7ed7b3acf2fd..2fd5398a068c8431bffb76a92f87b989fc744953 100644
--- a/third_party/WebKit/Source/core/workers/Worklet.h
+++ b/third_party/WebKit/Source/core/workers/Worklet.h
@@ -14,7 +14,6 @@
namespace blink {
class LocalFrame;
-class WorkletGlobalScopeProxy;
// This is the base implementation of Worklet interface defined in the spec:
// https://drafts.css-houdini.org/worklets/#worklet
@@ -34,9 +33,6 @@ class CORE_EXPORT Worklet : public GarbageCollectedFinalized<Worklet>,
// addModule() imports ES6 module scripts.
virtual ScriptPromise addModule(ScriptState*, const String& module_url) = 0;
- // Returns a proxy to WorkletGlobalScope on the context thread.
- virtual WorkletGlobalScopeProxy* GetWorkletGlobalScopeProxy() const = 0;
-
// ContextLifecycleObserver
virtual void ContextDestroyed(ExecutionContext*);

Powered by Google App Engine
This is Rietveld 408576698