| Index: third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.cpp b/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.cpp
|
| index 6298bbf8770d0c8110b04ac9e6fc19d6511d571a..c61b2d15c52dd685c792361e7019c267ca084446 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.cpp
|
| @@ -95,7 +95,7 @@ void V8AbstractEventListener::handleEvent(ScriptState* scriptState,
|
|
|
| // Get the V8 wrapper for the event object.
|
| v8::Local<v8::Value> jsEvent =
|
| - toV8(event, scriptState->context()->Global(), isolate());
|
| + ToV8(event, scriptState->context()->Global(), isolate());
|
| if (jsEvent.IsEmpty())
|
| return;
|
| invokeEventHandler(scriptState, event,
|
| @@ -194,7 +194,7 @@ v8::Local<v8::Object> V8AbstractEventListener::getReceiverObject(
|
|
|
| EventTarget* target = event->currentTarget();
|
| v8::Local<v8::Value> value =
|
| - toV8(target, scriptState->context()->Global(), isolate());
|
| + ToV8(target, scriptState->context()->Global(), isolate());
|
| if (value.IsEmpty())
|
| return v8::Local<v8::Object>();
|
| return v8::Local<v8::Object>::New(isolate(),
|
|
|