| Index: Source/core/inspector/InspectorConsoleAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.cpp b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| index 37cc22a726aec11ae4870f8f159d5405f52b54b1..be05ad7e9aa2e7d70552ac8abc15a8d452d71ab7 100644
|
| --- a/Source/core/inspector/InspectorConsoleAgent.cpp
|
| +++ b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| @@ -232,9 +232,9 @@ void InspectorConsoleAgent::consoleTimelineEnd(ExecutionContext* context, const
|
| m_timelineAgent->consoleTimelineEnd(context, title, scriptState);
|
| }
|
|
|
| -void InspectorConsoleAgent::consoleCount(ScriptState* scriptState, PassRefPtr<ScriptArguments> arguments)
|
| +void InspectorConsoleAgent::consoleCount(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments)
|
| {
|
| - RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(scriptState));
|
| + RefPtrWillBeRawPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(scriptState));
|
| const ScriptCallFrame& lastCaller = callStack->at(0);
|
| // Follow Firebug's behavior of counting with null and undefined title in
|
| // the same bucket as no argument
|
|
|