| Index: third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| index f159f5400ecd8a39ceb1d8d4480477757fc141d5..897df12d931938c4f6eb88196ba895a75568b594 100644
|
| --- a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| @@ -43,7 +43,7 @@ static bool isErrorStatusCode(int statusCode)
|
|
|
| XHRReplayData* XHRReplayData::create(ExecutionContext* executionContext, const AtomicString& method, const KURL& url, bool async, PassRefPtr<EncodedFormData> formData, bool includeCredentials)
|
| {
|
| - return new XHRReplayData(executionContext, method, url, async, formData, includeCredentials);
|
| + return new XHRReplayData(executionContext, method, url, async, std::move(formData), includeCredentials);
|
| }
|
|
|
| void XHRReplayData::addHeader(const AtomicString& key, const AtomicString& value)
|
|
|