| Index: third_party/WebKit/Source/core/frame/ConsoleBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/ConsoleBase.cpp b/third_party/WebKit/Source/core/frame/ConsoleBase.cpp
|
| index 0fec692afd84345819e54b10baad637aa533915d..6728af7e048541fc57206611346da8c5c781418b 100644
|
| --- a/third_party/WebKit/Source/core/frame/ConsoleBase.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/ConsoleBase.cpp
|
| @@ -103,7 +103,7 @@ void ConsoleBase::assertCondition(ScriptState* scriptState, PassRefPtrWillBeRawP
|
|
|
| void ConsoleBase::count(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments)
|
| {
|
| - RefPtrWillBeRawPtr<ScriptCallStack> callStack(currentScriptCallStackForConsole(1));
|
| + RefPtr<ScriptCallStack> callStack(currentScriptCallStackForConsole(1));
|
| const ScriptCallFrame& lastCaller = callStack->at(0);
|
| // Follow Firebug's behavior of counting with null and undefined title in
|
| // the same bucket as no argument
|
|
|