| Index: Source/core/inspector/NetworkResourcesData.cpp
|
| diff --git a/Source/core/inspector/NetworkResourcesData.cpp b/Source/core/inspector/NetworkResourcesData.cpp
|
| index 7faa95eb2abeadc7b66539c9e3708b5c9decab4f..529a9364c19be3de985ce714396126fcfa27dbf5 100644
|
| --- a/Source/core/inspector/NetworkResourcesData.cpp
|
| +++ b/Source/core/inspector/NetworkResourcesData.cpp
|
| @@ -46,9 +46,9 @@ static size_t maximumSingleResourceContentSize = 10 * 1000 * 1000;
|
| namespace blink {
|
|
|
|
|
| -PassRefPtr<XHRReplayData> XHRReplayData::create(ExecutionContext* executionContext, const AtomicString& method, const KURL& url, bool async, PassRefPtr<FormData> formData, bool includeCredentials)
|
| +PassRefPtrWillBeRawPtr<XHRReplayData> XHRReplayData::create(ExecutionContext* executionContext, const AtomicString& method, const KURL& url, bool async, PassRefPtr<FormData> formData, bool includeCredentials)
|
| {
|
| - return adoptRef(new XHRReplayData(executionContext, method, url, async, formData, includeCredentials));
|
| + return adoptRefWillBeNoop(new XHRReplayData(executionContext, method, url, async, formData, includeCredentials));
|
| }
|
|
|
| void XHRReplayData::addHeader(const AtomicString& key, const AtomicString& value)
|
|
|