| 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(
|
|
|