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

Unified Diff: third_party/WebKit/public/platform/WebURLResponse.h

Issue 1710733002: Move multipart resource handling to core/fetch (2/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup
Patch Set: Created 4 years, 9 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/public/platform/WebURLResponse.h
diff --git a/third_party/WebKit/public/platform/WebURLResponse.h b/third_party/WebKit/public/platform/WebURLResponse.h
index 7983419ea052b4f6cd72fbd745e91311ad61ecf2..e140c50bdcd4aa837b617761dd05092dec342703 100644
--- a/third_party/WebKit/public/platform/WebURLResponse.h
+++ b/third_party/WebKit/public/platform/WebURLResponse.h
@@ -225,9 +225,8 @@ public:
BLINK_PLATFORM_EXPORT WebURL originalURLViaServiceWorker() const;
BLINK_PLATFORM_EXPORT void setOriginalURLViaServiceWorker(const WebURL&);
- // Flag whether this request is part of a multipart response.
- BLINK_PLATFORM_EXPORT bool isMultipartPayload() const;
- BLINK_PLATFORM_EXPORT void setIsMultipartPayload(bool);
+ // The boundary of the response. Set only when this is a multipart response.
+ BLINK_PLATFORM_EXPORT void setMultipartBoundary(const char* bytes, size_t /* size */);
// This indicates the location of a downloaded response if the
// WebURLRequest had the downloadToFile flag set to true. This file path

Powered by Google App Engine
This is Rietveld 408576698