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

/external/webkit/WebKitTools/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 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.h43 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
H A DLayoutTestController.cpp1290 void LayoutTestController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) argument
1299 JSObjectSetProperty(context, windowObject, layoutTestContollerStr.get(), layoutTestContollerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
H A DPluginObject.cpp38 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message) argument
41 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) {
64 static void pluginLogWithWindowObjectVariableArgs(NPObject* windowObject, NPP instance, const char* format, ...) argument
72 pluginLogWithWindowObject(windowObject, instance, message);
84 NPObject* windowObject = 0; local
85 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
91 pluginLogWithWindowObject(windowObject, instance, message);
92 browser->releaseobject(windowObject);
696 NPObject *windowObject = NULL; local
697 browser->getvalue(npp, NPNVWindowNPObject, &windowObject);
730 NPObject *windowObject = NULL; local
[all...]
/external/webkit/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;
H A DWebViewPrivate.h608 - (void)webView:(WebView *)webView didClearInspectorWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame;
H A DWebFrame.mm1483 - (WebScriptObject *)windowObject
/external/webkit/WebKitTools/DumpRenderTree/win/
H A DFrameLoadDelegate.cpp337 JSObjectRef windowObject = JSContextGetGlobalObject(context); local
341 ::gLayoutTestController->makeWindowObject(context, windowObject, &exception);
344 m_gcController->makeWindowObject(context, windowObject, &exception);
347 m_accessibilityController->makeWindowObject(context, windowObject, &exception);
352 JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
H A DFrameLoadDelegate.h113 /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; }
118 /* [in] */ JSObjectRef windowObject,
110 windowScriptObjectAvailable( IWebView *sender, JSContextRef context, JSObjectRef windowObject) argument
/external/webkit/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/WebKitTools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp592 static void webViewWindowObjectCleared(WebKitWebView* view, WebKitWebFrame* frame, JSGlobalContextRef context, JSObjectRef windowObject, gpointer data) argument
597 gLayoutTestController->makeWindowObject(context, windowObject, &exception);
600 gcController->makeWindowObject(context, windowObject, &exception);
603 axController->makeWindowObject(context, windowObject, &exception);
608 JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
/external/webkit/WebKit/chromium/public/
H A DWebFrame.h199 virtual NPObject* windowObject() const = 0;
/external/webkit/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.cpp895 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld())); local
897 wkEvent.SetWindowObject(windowObject);
/external/webkit/WebKit/chromium/src/
H A DWebFrameImpl.h94 virtual NPObject* windowObject() const;
H A DWebFrameImpl.cpp588 NPObject* WebFrameImpl::windowObject() const function in class:WebKit::WebFrameImpl
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp537 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld())); local
538 ASSERT(windowObject);
541 g_signal_emit_by_name(webView, "window-object-cleared", m_frame, context, windowObject);
/external/webkit/WebKit/mac/WebCoreSupport/
H A DWebInspectorClient.mm162 @selector(webView:didClearInspectorWindowObject:forFrame:), [frame windowObject], frame);
/external/webkit/WebKitTools/DumpRenderTree/mac/
H A DFrameLoadDelegate.mm260 WebScriptObject *obj = [frame windowObject];
H A DTextInputController.m57 WebScriptObject *obj = [[self _frame] windowObject];
/external/webkit/WebKit/win/
H A DWebFrame.cpp1788 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(world)); local
1789 ASSERT(windowObject);
1791 if (FAILED(frameLoadDelegate->didClearWindowObject(d->webView, context, windowObject, this)))
1792 frameLoadDelegate->windowScriptObjectAvailable(d->webView, context, windowObject);

Completed in 95 milliseconds