HomeSort by relevance Sort by last modified time
    Searched defs:webWindowFeatures (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebwindowfeatures.cpp 423 WebKitWebWindowFeatures *webWindowFeatures = webkit_web_window_features_new();
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;
webkitwebviewprivate.h 58 GRefPtr<WebKitWebWindowFeatures> webWindowFeatures;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 103 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView);
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);
190 g_object_set(webWindowFeatures, "toolbar-visible", visible, NULL);
195 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView);
198 g_object_get(webWindowFeatures, "toolbar-visible", &visible, NULL);
204 WebKitWebWindowFeatures* webWindowFeatures = webkit_web_view_get_window_features(m_webView);
206 g_object_set(webWindowFeatures, "statusbar-visible", visible, NULL)
    [all...]

Completed in 280 milliseconds