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

Unified Diff: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp

Issue 2868413005: Worklet: Introduce WorkletOptions for addModule() (Closed)
Patch Set: add TODO 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/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(

Powered by Google App Engine
This is Rietveld 408576698