| Index: third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp b/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
|
| index 8636a48fe35bf43f4a74a7c3a9ad4ab8ae35a372..45de46839867fb8c761634fddfec5ebd225251ed 100644
|
| --- a/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/ConsoleMessage.cpp
|
| @@ -90,12 +90,12 @@ void ConsoleMessage::setLineNumber(unsigned lineNumber)
|
| m_lineNumber = lineNumber;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<ScriptCallStack> ConsoleMessage::callStack() const
|
| +PassRefPtr<ScriptCallStack> ConsoleMessage::callStack() const
|
| {
|
| return m_callStack;
|
| }
|
|
|
| -void ConsoleMessage::setCallStack(PassRefPtrWillBeRawPtr<ScriptCallStack> callStack)
|
| +void ConsoleMessage::setCallStack(PassRefPtr<ScriptCallStack> callStack)
|
| {
|
| m_callStack = callStack;
|
| if (m_callStack && m_callStack->size() && !m_scriptId) {
|
| @@ -213,7 +213,6 @@ void ConsoleMessage::collectCallStack()
|
|
|
| DEFINE_TRACE(ConsoleMessage)
|
| {
|
| - visitor->trace(m_callStack);
|
| visitor->trace(m_scriptArguments);
|
| }
|
|
|
|
|