HomeSort by relevance Sort by last modified time
    Searched refs:windowFeatures (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h 51 #include <WebCore/WindowFeatures.h>
296 template<> struct ArgumentCoder<WebCore::WindowFeatures> {
297 static void encode(ArgumentEncoder* encoder, const WebCore::WindowFeatures& windowFeatures)
299 encoder->encode(windowFeatures.x);
300 encoder->encode(windowFeatures.y);
301 encoder->encode(windowFeatures.width);
302 encoder->encode(windowFeatures.height);
303 encoder->encode(windowFeatures.xSet);
304 encoder->encode(windowFeatures.ySet)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebUIClient.cpp 37 #include <WebCore/WindowFeatures.h>
45 PassRefPtr<WebPageProxy> WebUIClient::createNewPage(WebPageProxy* page, const WindowFeatures& windowFeatures, WebEvent::Modifiers modifiers, WebMouseEvent::Button button)
51 if (windowFeatures.xSet)
52 map.set("x", WebDouble::create(windowFeatures.x));
53 if (windowFeatures.ySet)
54 map.set("y", WebDouble::create(windowFeatures.y));
55 if (windowFeatures.widthSet)
56 map.set("width", WebDouble::create(windowFeatures.width));
57 if (windowFeatures.heightSet
    [all...]
WebPageProxy.cpp 76 #include <WebCore/WindowFeatures.h>
    [all...]
  /external/webkit/Source/WebCore/page/
DOMWindow.cpp 94 #include "WindowFeatures.h"
356 WindowFeatures::parseDialogFeatures(string, map);
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 61 - (WebView *)webView: (WebView *)wv createWebViewWithRequest:(NSURLRequest *)request windowFeatures:(NSDictionary *)features
65 if (![[wv UIDelegate] respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)] && [[wv UIDelegate] respondsToSelector:@selector(webView:createWebViewWithRequest:)])
  /external/webkit/Source/WebCore/inspector/
InspectorPageAgent.cpp 50 #include "WindowFeatures.h"
108 WindowFeatures windowFeatures;
109 Frame* newFrame = WebCore::createWindow(mainFrame, mainFrame, request, windowFeatures, created);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUIDelegatePrivate.idl 93 // based on whether WebWindowFeaturesDialogKey returns a TRUE value from the windowFeatures
94 // IPropertyBag. The keys of the windowFeatures IPropertyBag are the WebWindowFeatures*Key
96 HRESULT createWebViewWithRequest([in] IWebView* sender, [in] IWebURLRequest* request, [in] IPropertyBag* windowFeatures, [out, retval] IWebView** newWebView);
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonWindowAdapter.mm 143 UInt32 windowFeatures;
164 GetWindowFeatures(inWindowRef, &windowFeatures);
177 if (windowFeatures & kWindowCanCollapse) styleMask |= NSMiniaturizableWindowMask;
178 if (windowFeatures & kWindowHasTitleBar) styleMask |= NSTitledWindowMask;
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebUIDelegatePrivate.h 210 - (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request windowFeatures:(NSDictionary *)features;
WebView.mm     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 155 Page* WebChromeClient::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures& windowFeatures, const NavigationAction& navigationAction)
162 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::CreateNewPage(windowFeatures, modifiers, mouseButton), Messages::WebPageProxy::CreateNewPage::Reply(newPageID, parameters), m_page->pageID()))
  /external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp 642 HRESULT STDMETHODCALLTYPE UIDelegate::createWebViewWithRequest(IWebView* sender, IWebURLRequest* request, IPropertyBag* windowFeatures, IWebView** newWebView)
UIDelegate.h 328 virtual HRESULT STDMETHODCALLTYPE createWebViewWithRequest(IWebView* sender, IWebURLRequest* request, IPropertyBag* windowFeatures, IWebView** newWebView);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.mm 75 #import <WebCore/WindowFeatures.h>
238 Page* WebChromeClient::createWindow(Frame* frame, const FrameLoadRequest&, const WindowFeatures& features, const NavigationAction&)
243 if ([delegate respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)]) {
275 newWebView = CallUIDelegate(m_webView, @selector(webView:createWebViewWithRequest:windowFeatures:), nil, dictFeatures);
    [all...]
WebFrameLoaderClient.mm     [all...]
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 642 windowFeatures:features];
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.mm     [all...]

Completed in 631 milliseconds