Index: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp |
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp |
index 946b8e55e26abb2ad979a95fc7d92657398ef932..d84f3d1a83dda0d2eef08ae4a68ecc0bf1d1b365 100644 |
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp |
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp |
@@ -440,14 +440,9 @@ void WebURLResponse::setOriginalURLViaServiceWorker(const WebURL& url) |
m_private->m_resourceResponse->setOriginalURLViaServiceWorker(url); |
} |
-bool WebURLResponse::isMultipartPayload() const |
+void WebURLResponse::setMultipartBoundary(const char* bytes, size_t size) |
{ |
- return m_private->m_resourceResponse->isMultipartPayload(); |
-} |
- |
-void WebURLResponse::setIsMultipartPayload(bool value) |
-{ |
- m_private->m_resourceResponse->setIsMultipartPayload(value); |
+ m_private->m_resourceResponse->setMultipartBoundary(bytes, size); |
} |
WebString WebURLResponse::downloadFilePath() const |