| 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 71a8816c030cbdcb323c6131ba92ddb448a80411..91b43944872d2c65a89bbc83988b2ddb3fa6cb8e 100644
|
| --- a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| @@ -36,9 +36,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<XHRReplayData> XHRReplayData::create(ExecutionContext* executionContext, const AtomicString& method, const KURL& url, bool async, PassRefPtr<EncodedFormData> formData, bool includeCredentials)
|
| +RawPtr<XHRReplayData> XHRReplayData::create(ExecutionContext* executionContext, const AtomicString& method, const KURL& url, bool async, PassRefPtr<EncodedFormData> formData, bool includeCredentials)
|
| {
|
| - return adoptRefWillBeNoop(new XHRReplayData(executionContext, method, url, async, formData, includeCredentials));
|
| + return new XHRReplayData(executionContext, method, url, async, formData, includeCredentials);
|
| }
|
|
|
| void XHRReplayData::addHeader(const AtomicString& key, const AtomicString& value)
|
| @@ -302,9 +302,9 @@ void NetworkResourcesData::setXHRReplayData(const String& requestId, XHRReplayDa
|
| resourceData->setXHRReplayData(xhrReplayData);
|
| }
|
|
|
| -WillBeHeapVector<RawPtrWillBeMember<NetworkResourcesData::ResourceData>> NetworkResourcesData::resources()
|
| +HeapVector<Member<NetworkResourcesData::ResourceData>> NetworkResourcesData::resources()
|
| {
|
| - WillBeHeapVector<RawPtrWillBeMember<ResourceData>> result;
|
| + HeapVector<Member<ResourceData>> result;
|
| for (auto& request : m_requestIdToResourceDataMap)
|
| result.append(request.value);
|
| return result;
|
|
|