HomeSort by relevance Sort by last modified time
    Searched defs:windowWrapper (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8InspectorFrontendHostCustom.cpp 150 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(isolate->GetEnteredContext()->Global(), isolate);
151 if (windowWrapper.IsEmpty())
153 LocalDOMWindow* window = V8Window::toImpl(windowWrapper);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Initializer.cpp 63 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(host, isolate);
64 if (windowWrapper.IsEmpty())
66 return V8Window::toImpl(windowWrapper)->frame();
WindowProxy.cpp 133 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(m_global.newLocal(m_isolate), m_isolate);
134 ASSERT(!windowWrapper.IsEmpty());
135 windowWrapper->TurnOnAccessCheck();
285 v8::Local<v8::Object> windowWrapper = V8ObjectConstructor::newInstance(m_isolate, m_scriptState->perContextData()->constructorForType(wrapperTypeInfo));
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_isolate)
    [all...]
V8Binding.cpp 704 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());
753 if (!windowWrapper.IsEmpty())
754 return V8Window::toImpl(windowWrapper)->executionContext();
    [all...]

Completed in 111 milliseconds