Searched defs:windowObject (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DGCController.cpp70 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
72 setProperty(context, windowObject, "GCController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
H A DEventSendingController.cpp203 void EventSendingController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
205 setProperty(context, windowObject, "eventSender", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
H A DLayoutTestController.cpp384 void LayoutTestController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
386 setProperty(context, windowObject, "layoutTestController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
/external/webkit/Tools/DumpRenderTree/win/
H A DFrameLoadDelegate.h117 /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; }
122 /* [in] */ JSObjectRef windowObject,
114 windowScriptObjectAvailable( IWebView *sender, JSContextRef context, JSObjectRef windowObject) argument
H A DFrameLoadDelegate.cpp352 JSObjectRef windowObject = JSContextGetGlobalObject(context); local
359 ::gLayoutTestController->makeWindowObject(context, windowObject, &exception);
362 m_gcController->makeWindowObject(context, windowObject, &exception);
365 m_accessibilityController->makeWindowObject(context, windowObject, &exception);
370 JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
/external/webkit/Tools/DumpRenderTree/
H A DAccessibilityController.cpp48 void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
56 JSObjectSetProperty(context, windowObject, accessibilityControllerStr.get(), accessibilityControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
H A DGCController.cpp74 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
82 JSObjectSetProperty(context, windowObject, gcControllerStr.get(), gcControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
H A DLayoutTestController.cpp2119 void LayoutTestController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
2128 JSObjectSetProperty(context, windowObject, layoutTestContollerStr.get(), layoutTestContollerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
H A Dmain.c160 NPObject *windowObject = NULL; local
161 error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
166 browser->invoke(instance, windowObject, browser->getstringidentifier("alert"), &alertMessage, 1, &result);
167 browser->releaseobject(windowObject);
/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/
H A DTestNetscapePlugin.cpp214 NPObject* windowObject = 0; local
215 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
219 if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) {
232 browser->releaseobject(windowObject);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A Dmain.cpp411 NPObject* windowObject = 0; local
412 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
416 if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) {
429 browser->releaseobject(windowObject);
H A DPluginObject.cpp39 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message) argument
42 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) {
65 static void pluginLogWithWindowObjectVariableArgs(NPObject* windowObject, NPP instance, const char* format, ...) argument
73 pluginLogWithWindowObject(windowObject, instance, message);
81 NPObject* windowObject = 0; local
82 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
88 pluginLogWithWindowObject(windowObject, instance, message);
89 browser->releaseobject(windowObject);
876 NPObject* windowObject = 0; local
877 browser->getvalue(npp, NPNVWindowNPObject, &windowObject);
920 NPObject* windowObject = 0; local
966 NPObject* windowObject; local
985 NPObject* windowObject; local
[all...]
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp744 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld())); local
745 ASSERT(windowObject);
748 g_signal_emit_by_name(webView, "window-object-cleared", m_frame, context, windowObject);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.cpp926 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld())); local
928 wkEvent.SetWindowObject(windowObject);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp818 static void addControllerToWindow(JSContextRef context, JSObjectRef windowObject, const char* controllerName, JSValueRef controller) argument
821 JSObjectSetProperty(context, windowObject, controllerNameStr, controller, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
825 static void webViewWindowObjectCleared(WebKitWebView* view, WebKitWebFrame* frame, JSGlobalContextRef context, JSObjectRef windowObject, gpointer data) argument
830 gLayoutTestController->makeWindowObject(context, windowObject, &exception);
833 gcController->makeWindowObject(context, windowObject, &exception);
836 axController->makeWindowObject(context, windowObject, &exception);
839 addControllerToWindow(context, windowObject, "eventSender", makeEventSender(context, !webkit_web_frame_get_parent(frame)));
840 addControllerToWindow(context, windowObject, "plainText", makePlainTextController(context));
841 addControllerToWindow(context, windowObject, "textInputController", makeTextInputController(context));
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp748 NPObject* WebFrameImpl::windowObject() const function in class:WebKit::WebFrameImpl
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp1933 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(world)); local
1934 ASSERT(windowObject);
1936 if (FAILED(frameLoadDelegate->didClearWindowObject(d->webView, context, windowObject, this)))
1937 frameLoadDelegate->windowScriptObjectAvailable(d->webView, context, windowObject);

Completed in 484 milliseconds