| Index: Source/core/inspector/InspectorResourceAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorResourceAgent.cpp b/Source/core/inspector/InspectorResourceAgent.cpp
|
| index d4202f41799afdb222b3ec5bd313748a5359abeb..254ce4c14955fe2e5c1917c3f8e7d407d8f30473 100644
|
| --- a/Source/core/inspector/InspectorResourceAgent.cpp
|
| +++ b/Source/core/inspector/InspectorResourceAgent.cpp
|
| @@ -521,7 +521,7 @@ void InspectorResourceAgent::didScheduleStyleRecalculation(Document* document)
|
|
|
| PassRefPtr<TypeBuilder::Network::Initiator> InspectorResourceAgent::buildInitiatorObject(Document* document, const FetchInitiatorInfo& initiatorInfo)
|
| {
|
| - RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture, true);
|
| + RefPtrWillBeRawPtr<ScriptCallStack> stackTrace = createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture, true);
|
| if (stackTrace && stackTrace->size() > 0) {
|
| RefPtr<TypeBuilder::Network::Initiator> initiatorObject = TypeBuilder::Network::Initiator::create()
|
| .setType(TypeBuilder::Network::Initiator::Type::Script);
|
|
|