Index: third_party/WebKit/Source/modules/fetch/Response.h |
diff --git a/third_party/WebKit/Source/modules/fetch/Response.h b/third_party/WebKit/Source/modules/fetch/Response.h |
index 462f0e7fc238c75b5f931f08676442b30dd9569d..be06f2c5c4096e5faa3f1a5023a134a7efd4a21e 100644 |
--- a/third_party/WebKit/Source/modules/fetch/Response.h |
+++ b/third_party/WebKit/Source/modules/fetch/Response.h |
@@ -38,9 +38,9 @@ |
static Response* create(ScriptState*, ExceptionState&); |
static Response* create(ScriptState*, ScriptValue body, const Dictionary&, ExceptionState&); |
- static Response* create(ScriptState*, PassOwnPtr<FetchDataConsumerHandle> bodyHandle, const String& contentType, const ResponseInit&, ExceptionState&); |
+ static Response* create(ExecutionContext*, PassOwnPtr<FetchDataConsumerHandle> bodyHandle, const String& contentType, const ResponseInit&, ExceptionState&); |
static Response* create(ExecutionContext*, FetchResponseData*); |
- static Response* create(ScriptState*, const WebServiceWorkerResponse&); |
+ static Response* create(ExecutionContext*, const WebServiceWorkerResponse&); |
static Response* createClone(const Response&); |
@@ -58,7 +58,7 @@ |
Headers* headers() const; |
// From Response.idl: |
- Response* clone(ScriptState*, ExceptionState&); |
+ Response* clone(ExceptionState&); |
// ActiveScriptWrappable |
bool hasPendingActivity() const final; |