Searched defs:webWindowFeatures (Results 1 - 4 of 4) sorted by relevance
/external/webkit/Source/WebKit/gtk/webkit/ |
H A D | webkitwebviewprivate.h | 58 GRefPtr<WebKitWebWindowFeatures> webWindowFeatures; member in struct:_WebKitWebViewPrivate
|
H A D | webkitwebwindowfeatures.cpp | 423 WebKitWebWindowFeatures *webWindowFeatures = webkit_web_window_features_new(); local 426 g_object_set(webWindowFeatures, "x", static_cast<int>(features.x), NULL); 429 g_object_set(webWindowFeatures, "y", static_cast<int>(features.y), NULL); 432 g_object_set(webWindowFeatures, "width", static_cast<int>(features.width), NULL); 435 g_object_set(webWindowFeatures, "height", static_cast<int>(features.height), NULL); 437 g_object_set(webWindowFeatures, 446 return webWindowFeatures;
|
H A D | webkitwebview.cpp | 251 static void webkit_web_view_set_window_features(WebKitWebView* webView, WebKitWebWindowFeatures* webWindowFeatures); 1368 priv->webWindowFeatures.clear(); 3534 priv->webWindowFeatures = adoptGRef(webkit_web_window_features_new()); 3680 static void webkit_web_view_set_window_features(WebKitWebView* webView, WebKitWebWindowFeatures* webWindowFeatures) argument 3682 if (!webWindowFeatures) 3684 if (webkit_web_window_features_equal(webView->priv->webWindowFeatures.get(), webWindowFeatures)) 3686 webView->priv->webWindowFeatures = webWindowFeatures; 3703 return webView->priv->webWindowFeatures [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
H A D | ChromeClientGtk.cpp | 103 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 105 g_object_set(webWindowFeatures, 164 GRefPtr<WebKitWebWindowFeatures> webWindowFeatures(adoptGRef(kitNew(coreFeatures))); 165 g_object_set(webView, "window-features", webWindowFeatures.get(), NULL); 188 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 190 g_object_set(webWindowFeatures, "toolbar-visible", visible, NULL); 195 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 198 g_object_get(webWindowFeatures, "toolbar-visible", &visible, NULL); 204 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 206 g_object_set(webWindowFeatures, "statusba 211 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 220 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 227 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 236 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local 243 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView); local [all...] |
Completed in 1170 milliseconds