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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.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/V8WorkerGlobalScopeEventListener.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
index 92a57bd9c24a9f9163c9a77ef522e68230ba8a89..585601422f26b7b3f64942708c600e3c73d93961 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
@@ -60,7 +60,7 @@ void V8WorkerGlobalScopeEventListener::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;
@@ -106,7 +106,7 @@ v8::Local<v8::Object> V8WorkerGlobalScopeEventListener::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