| Index: third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
|
| index 966bfbde5d6d0079aaeb99b08ae9816aff3db842..ff4ee1c6f64856f3042472501f81770325236a24 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
|
| @@ -84,7 +84,7 @@ v8::Local<v8::Value> V8ThrowException::createDOMException(
|
| DOMException* domException =
|
| DOMException::create(exceptionCode, sanitizedMessage, unsanitizedMessage);
|
| v8::Local<v8::Object> exceptionObj =
|
| - toV8(domException, isolate->GetCurrentContext()->Global(), isolate)
|
| + ToV8(domException, isolate->GetCurrentContext()->Global(), isolate)
|
| .As<v8::Object>();
|
| // Attach an Error object to the DOMException. This is then lazily used to
|
| // get the stack value.
|
|
|