| Index: third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.cpp
|
| index e0bab17d89084f086fb7987bf9f4d65a61e76453..70566e031f76c1ec1c1d03f5769fec696a3b8113 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.cpp
|
| @@ -93,7 +93,7 @@ std::unique_ptr<protocol::Runtime::CallFrame> V8StackTraceImpl::Frame::buildInsp
|
|
|
| V8StackTraceImpl::Frame V8StackTraceImpl::Frame::clone() const
|
| {
|
| - return Frame(m_functionName.isolatedCopy(), m_scriptId.isolatedCopy(), m_scriptName.isolatedCopy(), m_lineNumber, m_columnNumber);
|
| + return Frame(m_functionName, m_scriptId, m_scriptName, m_lineNumber, m_columnNumber);
|
| }
|
|
|
| // static
|
| @@ -170,7 +170,7 @@ std::unique_ptr<V8StackTrace> V8StackTraceImpl::clone()
|
| std::vector<Frame> frames;
|
| for (size_t i = 0; i < m_frames.size(); i++)
|
| frames.push_back(m_frames.at(i).clone());
|
| - return wrapUnique(new V8StackTraceImpl(m_contextGroupId, m_description.isolatedCopy(), frames, nullptr));
|
| + return wrapUnique(new V8StackTraceImpl(m_contextGroupId, m_description, frames, nullptr));
|
| }
|
|
|
| V8StackTraceImpl::V8StackTraceImpl(int contextGroupId, const String16& description, std::vector<Frame>& frames, std::unique_ptr<V8StackTraceImpl> parent)
|
|
|