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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchResponseData.h

Issue 1899873006: Make Response::body return v8-extra based stream behind flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notify-locked-released
Patch Set: Created 4 years, 8 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/fetch/FetchResponseData.h
diff --git a/third_party/WebKit/Source/modules/fetch/FetchResponseData.h b/third_party/WebKit/Source/modules/fetch/FetchResponseData.h
index 3b05c9023fc4ced71f23f15c409a149a2097fd94..285ea27651e28a0b67b527939afd5f4abb7fee51 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchResponseData.h
+++ b/third_party/WebKit/Source/modules/fetch/FetchResponseData.h
@@ -15,8 +15,8 @@
namespace blink {
class BodyStreamBuffer;
-class ExecutionContext;
class FetchHeaderList;
+class ScriptState;
class WebServiceWorkerResponse;
class MODULES_EXPORT FetchResponseData final : public GarbageCollectedFinalized<FetchResponseData> {
@@ -39,7 +39,7 @@ public:
FetchResponseData* createOpaqueFilteredResponse();
FetchResponseData* createOpaqueRedirectFilteredResponse();
- FetchResponseData* clone(ExecutionContext*);
+ FetchResponseData* clone(ScriptState*);
Type getType() const { return m_type; }
const KURL& url() const { return m_url; }

Powered by Google App Engine
This is Rietveld 408576698