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/V8LazyEventListener.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/V8LazyEventListener.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8LazyEventListener.cpp b/third_party/WebKit/Source/bindings/core/v8/V8LazyEventListener.cpp
index 376175c08285551232a6998f291ff6a3324fc276..c4c04aa7720b63fa825c8e1449abd9fdb079e2cb 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8LazyEventListener.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8LazyEventListener.cpp
@@ -72,7 +72,7 @@ v8::Local<v8::Object> toObjectWrapper(T* domObject, ScriptState* scriptState) {
if (!domObject)
return v8::Object::New(scriptState->isolate());
v8::Local<v8::Value> value =
- toV8(domObject, scriptState->context()->Global(), scriptState->isolate());
+ ToV8(domObject, scriptState->context()->Global(), scriptState->isolate());
if (value.IsEmpty())
return v8::Object::New(scriptState->isolate());
return v8::Local<v8::Object>::New(scriptState->isolate(),

Powered by Google App Engine
This is Rietveld 408576698