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

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

Issue 2853743002: Worklet: Introduce PaintWorkletGlobalScopeProxy (Closed)
Patch Set: address review comments Created 3 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.h
diff --git a/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.h b/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.h
index 6c7887bdf2f5cb8c03afa1c1141bdfad28bf9707..f40405b7b035ea5d25b15debc54b6e64f78cd870 100644
--- a/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.h
+++ b/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.h
@@ -10,7 +10,6 @@
#include "core/dom/ExecutionContext.h"
#include "core/loader/WorkletScriptLoader.h"
#include "core/workers/WorkletGlobalScope.h"
-#include "core/workers/WorkletGlobalScopeProxy.h"
#include "core/workers/WorkletPendingTasks.h"
namespace blink {
@@ -21,7 +20,6 @@ class ScriptSourceCode;
class CORE_EXPORT MainThreadWorkletGlobalScope
: public WorkletGlobalScope,
- public WorkletGlobalScopeProxy,
public WorkletScriptLoader::Client,
public ContextClient {
USING_GARBAGE_COLLECTED_MIXIN(MainThreadWorkletGlobalScope);
@@ -40,11 +38,9 @@ class CORE_EXPORT MainThreadWorkletGlobalScope
void CountDeprecation(UseCounter::Feature) final;
WorkerThread* GetThread() const final;
- // WorkletGlobalScopeProxy
void FetchAndInvokeScript(const KURL& module_url_record,
- WorkletPendingTasks*) final;
- void EvaluateScript(const ScriptSourceCode&) final;
- void TerminateWorkletGlobalScope() final;
+ WorkletPendingTasks*);
+ void Terminate();
// WorkletScriptLoader::Client
void NotifyWorkletScriptLoadingFinished(WorkletScriptLoader*,
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698