| 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 cce304a97fa2582cd279ea197f8a3d956e980fae..12a74f1b3bd990f475047e55d219fb7c4d567d42 100644
|
| --- a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| @@ -45,9 +45,9 @@ static size_t maximumSingleResourceContentSize = 10 * 1000 * 1000;
|
| 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)
|
| @@ -311,9 +311,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;
|
|
|