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

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

Issue 2911093002: Worklet: Move loader client impl from ThreadedWorklet to ThreadedWorkletMessagingProxy
Patch Set: rebase 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/WorkletGlobalScopeProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h b/third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h
index 5fd7dec7796823957d004f4cdd64263d55b14adc..c26f9bf92c8539e3c7117de0a55b8ce614f22443 100644
--- a/third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h
@@ -12,7 +12,6 @@
namespace blink {
-class ScriptSourceCode;
class WorkletPendingTasks;
// Abstracts communication from (Main/Threaded)Worklet on the main thread to
@@ -30,10 +29,6 @@ class CORE_EXPORT WorkletGlobalScopeProxy {
RefPtr<WebTaskRunner> outside_settings_task_runner,
WorkletPendingTasks*) {}
- // Evaluates the given script source code. This should be called only for
- // threaded worklets that still use classic script loading.
- virtual void EvaluateScript(const ScriptSourceCode&) = 0;
-
// Terminates the worklet global scope from the main thread.
virtual void TerminateWorkletGlobalScope() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698