Index: Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
diff --git a/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp b/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
index fa8fb13ab2e81b44d235d5167d7b43d21aacf8d7..47f71fc5000e1adfd893fe06081c1cd8d5f19c96 100644 |
--- a/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
+++ b/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp |
@@ -160,7 +160,7 @@ void V8DevToolsHost::showContextMenuAtPointMethodCustom(const v8::FunctionCallba |
document = V8HTMLDocument::toImpl(documentWrapper); |
} else { |
v8::Isolate* isolate = info.GetIsolate(); |
- v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(isolate->GetEnteredContext()->Global(), isolate); |
+ v8::Local<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(isolate->GetEnteredContext()->Global(), isolate); |
if (windowWrapper.IsEmpty()) |
return; |
DOMWindow* window = V8Window::toImpl(windowWrapper); |