HomeSort by relevance Sort by last modified time
    Searched full:windowfeatures (Results 1 - 25 of 73) sorted by null

1 2 3

  /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...]
WebUIClient.h 39 struct WindowFeatures;
55 PassRefPtr<WebPageProxy> createNewPage(WebPageProxy*, const WebCore::WindowFeatures&, WebEvent::Modifiers, WebMouseEvent::Button);
WebPageProxy.messages.in 25 CreateNewPage(WebCore::WindowFeatures windowFeatures, uint32_t modifiers, int32_t mouseButton) -> (uint64_t newPageID, WebKit::WebPageCreationParameters newPageParameters)
  /external/webkit/Source/WebCore/page/
WindowFeatures.h 39 struct WindowFeatures {
41 WindowFeatures()
57 WindowFeatures(const String& windowFeaturesString);
58 WindowFeatures(const String& dialogFeaturesString, const FloatRect& screenAvailableRect);
WindowFeatures.cpp 24 #include "WindowFeatures.h"
40 WindowFeatures::WindowFeatures(const String& features)
123 void WindowFeatures::setWindowFeature(const String& keyString, const String& valueString)
164 WindowFeatures::WindowFeatures(const String& dialogFeaturesString, const FloatRect& screenAvailableRect)
210 bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue)
219 float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue)
238 void WindowFeatures::parseDialogFeatures(const String& string, DialogFeaturesMap& map)
DOMWindow.cpp 94 #include "WindowFeatures.h"
356 WindowFeatures::parseDialogFeatures(string, map);
    [all...]
Chrome.h 58 struct WindowFeatures;
105 Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&) const;
ChromeClient.h 65 struct WindowFeatures;
101 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&) = 0;
DOMWindow.h 75 struct WindowFeatures;
447 static Frame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatures&,
  /external/webkit/Source/WebKit/efl/ewk/
ewk_window_features.cpp 24 #include "WindowFeatures.h"
35 WebCore::WindowFeatures* core;
151 * @param core if not @c 0 a new WebCore::WindowFeatures is allocated copying core features and
155 Ewk_Window_Features* ewk_window_features_new_from_core(const WebCore::WindowFeatures* core)
160 window_features->core = new WebCore::WindowFeatures(*core);
162 window_features->core = new WebCore::WindowFeatures();
ewk_private.h 70 Evas_Object *ewk_view_window_create(Evas_Object *o, Eina_Bool javascript, const WebCore::WindowFeatures* coreFeatures);
134 Ewk_Window_Features *ewk_window_features_new_from_core(const WebCore::WindowFeatures* core);
  /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/chromium/public/
WebWindowFeatures.h 39 #include "WindowFeatures.h"
83 WebWindowFeatures(const WebCore::WindowFeatures& f)
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebwindowfeaturesprivate.h 30 WebKitWebWindowFeatures* kitNew(const WebCore::WindowFeatures&);
webkitwebwindowfeatures.cpp 24 #include "WindowFeatures.h"
421 WebKitWebWindowFeatures* kitNew(const WebCore::WindowFeatures& features)
  /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/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/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 46 #include "WindowFeatures.h"
63 wxWebKitWindowFeatures wkFeaturesforWindowFeatures(const WindowFeatures& features)
144 Page* ChromeClientWx::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures& features, const NavigationAction&)
ChromeClientWx.h 61 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.h 58 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
ChromeClientEfl.cpp 56 #include "WindowFeatures.h"
151 Page* ChromeClientEfl::createWindow(Frame*, const FrameLoadRequest& frameLoadRequest, const WindowFeatures& features, const NavigationAction&)
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 47 struct WindowFeatures;
76 WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 79 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);

Completed in 769 milliseconds

1 2 3