Searched defs:windowWrapper (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8InspectorFrontendHostCustom.cpp150 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(isolate->GetEnteredContext()->Global(), isolate); local
151 if (windowWrapper.IsEmpty())
153 LocalDOMWindow* window = V8Window::toImpl(windowWrapper);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8Initializer.cpp63 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(host, isolate); local
64 if (windowWrapper.IsEmpty())
66 return V8Window::toImpl(windowWrapper)->frame();
H A DWindowProxy.cpp133 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(m_global.newLocal(m_isolate), m_isolate); local
134 ASSERT(!windowWrapper.IsEmpty());
135 windowWrapper->TurnOnAccessCheck();
285 v8::Local<v8::Object> windowWrapper = V8ObjectConstructor::newInstance(m_isolate, m_scriptState->perContextData()->constructorForType(wrapperTypeInfo)); local
286 if (windowWrapper.IsEmpty())
289 V8DOMWrapper::setNativeInfoForHiddenWrapper(v8::Handle<v8::Object>::Cast(windowWrapper->GetPrototype()), wrapperTypeInfo, window->toScriptWrappableBase());
291 // Install the windowWrapper as the prototype of the innerGlobalObject.
313 innerGlobalObject->SetPrototype(windowWrapper);
314 V8DOMWrapper::associateObjectWithWrapperNonTemplate(window, wrapperTypeInfo, windowWrapper, m_isolate);
315 wrapperTypeInfo->installConditionallyEnabledProperties(windowWrapper, m_isolat
[all...]
H A DV8Binding.cpp704 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(v8::Handle<v8::Object>::Cast(value), isolate);
705 if (!windowWrapper.IsEmpty())
706 return V8Window::toImpl(windowWrapper);
752 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(global, context->GetIsolate()); local
753 if (!windowWrapper.IsEmpty())
754 return V8Window::toImpl(windowWrapper)->executionContext();

Completed in 97 milliseconds