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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8MessageChannelCustom.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/custom/V8MessageChannelCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageChannelCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageChannelCustom.cpp
index 11a1d56e638905c7a768224023f3be2b02a158b9..bf00ad2f1470477e52ea16e9177e47f4ba5fe191 100644
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageChannelCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageChannelCustom.cpp
@@ -53,10 +53,10 @@ void V8MessageChannel::constructorCustom(
ScriptState* scriptState = ScriptState::current(info.GetIsolate());
V8HiddenValue::setHiddenValue(
scriptState, wrapper, V8HiddenValue::port1(info.GetIsolate()),
- toV8(channel->port1(), info.Holder(), info.GetIsolate()));
+ ToV8(channel->port1(), info.Holder(), info.GetIsolate()));
V8HiddenValue::setHiddenValue(
scriptState, wrapper, V8HiddenValue::port2(info.GetIsolate()),
- toV8(channel->port2(), info.Holder(), info.GetIsolate()));
+ ToV8(channel->port2(), info.Holder(), info.GetIsolate()));
v8SetReturnValue(info,
V8DOMWrapper::associateObjectWithWrapper(

Powered by Google App Engine
This is Rietveld 408576698