| Index: third_party/WebKit/Source/platform/network/ResourceResponse.cpp
|
| diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
|
| index bb00a8553cc70e6cc67f046bff8698c1ea137d74..de8054a76bad978caa3786cc63b0d4a03cc1378d 100644
|
| --- a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
|
| +++ b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
|
| @@ -151,12 +151,12 @@ PassOwnPtr<CrossThreadResourceResponseData> ResourceResponse::copyData() const
|
| {
|
| OwnPtr<CrossThreadResourceResponseData> data = adoptPtr(new CrossThreadResourceResponseData);
|
| data->m_url = url().copy();
|
| - data->m_mimeType = mimeType().string().isolatedCopy();
|
| + data->m_mimeType = mimeType().getString().isolatedCopy();
|
| data->m_expectedContentLength = expectedContentLength();
|
| - data->m_textEncodingName = textEncodingName().string().isolatedCopy();
|
| + data->m_textEncodingName = textEncodingName().getString().isolatedCopy();
|
| data->m_suggestedFilename = suggestedFilename().isolatedCopy();
|
| data->m_httpStatusCode = httpStatusCode();
|
| - data->m_httpStatusText = httpStatusText().string().isolatedCopy();
|
| + data->m_httpStatusText = httpStatusText().getString().isolatedCopy();
|
| data->m_httpHeaders = httpHeaderFields().copyData();
|
| data->m_lastModifiedDate = lastModifiedDate();
|
| if (m_resourceLoadTiming)
|
| @@ -185,7 +185,7 @@ PassOwnPtr<CrossThreadResourceResponseData> ResourceResponse::copyData() const
|
| data->m_serviceWorkerResponseType = m_serviceWorkerResponseType;
|
| data->m_originalURLViaServiceWorker = m_originalURLViaServiceWorker.copy();
|
| data->m_responseTime = m_responseTime;
|
| - data->m_remoteIPAddress = m_remoteIPAddress.string().isolatedCopy();
|
| + data->m_remoteIPAddress = m_remoteIPAddress.getString().isolatedCopy();
|
| data->m_remotePort = m_remotePort;
|
| data->m_downloadedFilePath = m_downloadedFilePath.isolatedCopy();
|
| data->m_downloadedFileHandle = m_downloadedFileHandle;
|
|
|