| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| index acb26e70ae1143130f7d9041c78c7ba332862d69..2134492acdd163242964c52f0d597abadc66f88b 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp
|
| @@ -129,10 +129,10 @@ void V8Window::frameElementAttributeGetterCustom(
|
| // the frame it's in, rather than its own frame.
|
| // So, use its containing document as the creation context when wrapping.
|
| v8::Local<v8::Value> creationContext =
|
| - toV8(&impl->frameElement()->document(), info.Holder(), info.GetIsolate());
|
| + ToV8(&impl->frameElement()->document(), info.Holder(), info.GetIsolate());
|
| RELEASE_ASSERT(!creationContext.IsEmpty());
|
| v8::Local<v8::Value> wrapper =
|
| - toV8(impl->frameElement(), v8::Local<v8::Object>::Cast(creationContext),
|
| + ToV8(impl->frameElement(), v8::Local<v8::Object>::Cast(creationContext),
|
| info.GetIsolate());
|
| v8SetReturnValue(info, wrapper);
|
| }
|
|
|