| Index: third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
|
| index 841bafc2bbf6b8f22030cf4a17682e62d5252588..9f075e0e32c9b4bbf23ffa55ac034d6e1df34140 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
|
| @@ -103,7 +103,7 @@ void V8ErrorHandler::storeExceptionOnErrorEventWrapper(
|
| v8::Local<v8::Value> data,
|
| v8::Local<v8::Object> creationContext) {
|
| v8::Local<v8::Value> wrappedEvent =
|
| - toV8(event, creationContext, scriptState->isolate());
|
| + ToV8(event, creationContext, scriptState->isolate());
|
| if (wrappedEvent.IsEmpty())
|
| return;
|
|
|
| @@ -119,7 +119,7 @@ v8::Local<v8::Value> V8ErrorHandler::loadExceptionFromErrorEventWrapper(
|
| ErrorEvent* event,
|
| v8::Local<v8::Object> creationContext) {
|
| v8::Local<v8::Value> wrappedEvent =
|
| - toV8(event, creationContext, scriptState->isolate());
|
| + ToV8(event, creationContext, scriptState->isolate());
|
| if (wrappedEvent.IsEmpty() || !wrappedEvent->IsObject())
|
| return v8::Local<v8::Value>();
|
|
|
|
|