| 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 e651ddaafb7c8f9e278e8c39bf3e01ab35b45cf1..5fd7dec7796823957d004f4cdd64263d55b14adc 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h
|
| @@ -6,6 +6,7 @@
|
| #define WorkletGlobalScopeProxy_h
|
|
|
| #include "core/CoreExport.h"
|
| +#include "platform/WebTaskRunner.h"
|
| #include "platform/weborigin/KURL.h"
|
| #include "public/platform/WebURLRequest.h"
|
|
|
| @@ -23,9 +24,11 @@ class CORE_EXPORT WorkletGlobalScopeProxy {
|
|
|
| // Runs the "fetch and invoke a worklet script" algorithm:
|
| // https://drafts.css-houdini.org/worklets/#fetch-and-invoke-a-worklet-script
|
| - virtual void FetchAndInvokeScript(const KURL& module_url_record,
|
| - WebURLRequest::FetchCredentialsMode,
|
| - WorkletPendingTasks*) {}
|
| + virtual void FetchAndInvokeScript(
|
| + const KURL& module_url_record,
|
| + WebURLRequest::FetchCredentialsMode,
|
| + 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.
|
|
|