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

Unified Diff: third_party/WebKit/Source/core/workers/Worklet.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/Worklet.h
diff --git a/third_party/WebKit/Source/core/workers/Worklet.h b/third_party/WebKit/Source/core/workers/Worklet.h
index 7c2c2f222c15afc1b253065bda4635fc6a979abe..a477de4839763aa23a3fee87685f63e4f453f3eb 100644
--- a/third_party/WebKit/Source/core/workers/Worklet.h
+++ b/third_party/WebKit/Source/core/workers/Worklet.h
@@ -11,6 +11,7 @@
#include "core/workers/WorkletOptions.h"
#include "platform/bindings/ScriptWrappable.h"
#include "platform/heap/Handle.h"
+#include "public/platform/WebURLRequest.h"
namespace blink {
@@ -43,6 +44,9 @@ class CORE_EXPORT Worklet : public GarbageCollectedFinalized<Worklet>,
// The Worklet inherits the url and userAgent from the frame->document().
explicit Worklet(LocalFrame*);
+ WebURLRequest::FetchCredentialsMode ParseCredentialsOption(
+ const String& credentials_option);
+
private:
virtual void FetchAndInvokeScript(const KURL& module_url_record,
const WorkletOptions&,

Powered by Google App Engine
This is Rietveld 408576698