Searched refs:windowObject (Results 1 - 25 of 33) sorted by relevance

12

/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 DGCController.h39 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
H A DEventSendingController.h41 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* 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.h55 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* 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/
H A DGCController.h39 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
H A DAccessibilityController.h43 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* 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 DAccessibilityController.cpp48 void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
56 JSObjectSetProperty(context, windowObject, accessibilityControllerStr.get(), accessibilityControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
H A DLayoutTestController.h46 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
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...]
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);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFrame.h205 @method windowObject
208 - (WebScriptObject *)windowObject;
H A DWebFrameLoadDelegate.h177 @param windowObject The WebScriptObject representing the frame's JavaScript window object.
178 @param frame The WebFrame to which windowObject belongs.
184 - (void)webView:(WebView *)webView didClearWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame;
/external/webkit/Tools/DumpRenderTree/win/
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);
H A DFrameLoadDelegate.h117 /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; }
122 /* [in] */ JSObjectRef windowObject,
114 windowScriptObjectAvailable( IWebView *sender, JSContextRef context, JSObjectRef windowObject) argument
/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/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/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/Source/WebKit/chromium/public/
H A DWebFrame.h232 virtual NPObject* windowObject() const = 0;
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.cpp926 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld())); local
928 wkEvent.SetWindowObject(windowObject);
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.h100 virtual NPObject* windowObject() const;
/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/mac/WebCoreSupport/
H A DWebInspectorClient.mm131 @selector(webView:didClearInspectorWindowObject:forFrame:), [frame windowObject], frame);

Completed in 226 milliseconds

12