| 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 4117fc3a879bb333638bbd9650e8b6f74b7a0fd4..83cc55f920349cfb2bcec9ec24eb05a79e0b2095 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| @@ -450,6 +450,11 @@ void WebURLResponse::setIsMultipartPayload(bool value)
|
| m_private->m_resourceResponse->setIsMultipartPayload(value);
|
| }
|
|
|
| +void WebURLResponse::setMultipartBoundary(const char* bytes, size_t size)
|
| +{
|
| + m_private->m_resourceResponse->setMultipartBoundary(bytes, size);
|
| +}
|
| +
|
| WebString WebURLResponse::downloadFilePath() const
|
| {
|
| return m_private->m_resourceResponse->downloadedFilePath();
|
|
|