Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.cpp

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(),

Powered by Google App Engine
This is Rietveld 408576698