| Index: Source/core/inspector/InspectorConsoleAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.cpp b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| index 37cc22a726aec11ae4870f8f159d5405f52b54b1..34b8f34e4f637d4261512462cd2eb2e410336fea 100644
|
| --- a/Source/core/inspector/InspectorConsoleAgent.cpp
|
| +++ b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| @@ -154,7 +154,7 @@ void InspectorConsoleAgent::clearFrontend()
|
| disable(&errorString);
|
| }
|
|
|
| -void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, ScriptCallStack* callStack, unsigned long requestIdentifier)
|
| +void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, unsigned long requestIdentifier)
|
| {
|
| if (type == ClearMessageType) {
|
| ErrorString error;
|
| @@ -164,7 +164,7 @@ void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageTyp
|
| addConsoleMessage(adoptPtr(new ConsoleMessage(!isWorkerAgent(), source, type, level, message, callStack, requestIdentifier)));
|
| }
|
|
|
| -void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, ScriptState* scriptState, ScriptArguments* arguments, unsigned long requestIdentifier)
|
| +void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier)
|
| {
|
| if (type == ClearMessageType) {
|
| ErrorString error;
|
| @@ -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
|
|
|