| Index: third_party/WebKit/Source/bindings/core/v8/ExceptionState.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.cpp b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.cpp
|
| index dc447ca2fe0cbe87fa4a66ec1de3ca7e4c104fb9..f21dca54e9ead9c4c5fb4b7ba5084592a99c4319 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.cpp
|
| @@ -45,8 +45,9 @@ void ExceptionState::throwDOMException(ExceptionCode ec,
|
| DCHECK(ec != SecurityError);
|
|
|
| const String& processedMessage = addExceptionContext(message);
|
| - setException(ec, processedMessage, V8ThrowException::createDOMException(
|
| - m_isolate, ec, processedMessage));
|
| + setException(
|
| + ec, processedMessage,
|
| + V8ThrowException::createDOMException(m_isolate, ec, processedMessage));
|
| }
|
|
|
| void ExceptionState::throwRangeError(const String& message) {
|
|
|