| 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 bd3472aaa0a73ac1cc0c414cb4390a131eabfa02..ea2dd886f3c92c6bdf8e36c22d4527089a34742e 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
|
|
|