| Index: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp
|
| diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp
|
| index 29b28581019983c0a357a2dc68cc5771d36e435f..6b6aab8dd4c893c817b8b6cd49679e59c90d8ef3 100644
|
| --- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp
|
| +++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp
|
| @@ -28,9 +28,11 @@ PaintWorkletGlobalScopeProxy::PaintWorkletGlobalScopeProxy(LocalFrame* frame) {
|
|
|
| void PaintWorkletGlobalScopeProxy::FetchAndInvokeScript(
|
| const KURL& module_url_record,
|
| + WebURLRequest::FetchCredentialsMode credentials_mode,
|
| WorkletPendingTasks* pending_tasks) {
|
| DCHECK(IsMainThread());
|
| - global_scope_->FetchAndInvokeScript(module_url_record, pending_tasks);
|
| + global_scope_->FetchAndInvokeScript(module_url_record, credentials_mode,
|
| + pending_tasks);
|
| }
|
|
|
| void PaintWorkletGlobalScopeProxy::EvaluateScript(
|
|
|