Searched defs:window (Results 1 - 25 of 311) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/
H A Dbrowser_list_gtk.cc15 GtkWindow* window = GTK_WINDOW(i->data); local
18 // window or the toplevel associated with drop down windows crashes.
21 if (GTK_WIDGET_VISIBLE(GTK_WIDGET(window)) &&
22 (GTK_IS_DIALOG(GTK_WIDGET(window))))
23 gtk_widget_destroy(GTK_WIDGET(window));
/external/chromium/chrome/browser/ui/tests/
H A Dui_gfx_image_unittest.cc39 GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL); local
40 gtk_window_resize(GTK_WINDOW(window), 200, 200);
41 gtk_window_move(GTK_WINDOW(window), 300, 300);
44 gtk_container_add(GTK_CONTAINER(window), fixed);
51 gtk_widget_show_all(window);
53 gtk_widget_destroy(window);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
H A DWMPrint.cpp39 HWND window = WKViewGetWindow(webView.platformView()); local
42 ::SendMessage(window, WM_PRINT, reinterpret_cast<WPARAM>(dc), PRF_CLIENT | PRF_CHILDREN);
/external/chromium/chrome/common/extensions/docs/js/
H A Dbootstrap.js19 if (window.location.search == "?regenerate" ||
21 (window.location.href.match("^file:")) &&
29 window.onload = window.renderPage;
31 window.postRender = function() {
43 (window.location.href.match("^file:")) &&
45 window.onload = function() {
/external/chromium/chrome/browser/extensions/
H A Dextension_tabs_apitest.cc116 browser()->window()->SetFullscreen(true);
117 bool is_fullscreen = browser()->window()->IsFullscreen();
119 ASSERT_EQ(is_fullscreen, browser()->window()->IsFullscreen());
124 browser()->window()->SetFullscreen(true);
126 ASSERT_FALSE(browser()->window()->IsFullscreen());
131 gfx::NativeWindow window = browser()->window()->GetNativeHandle(); local
132 ::SendMessage(window, WM_SYSCOMMAND, SC_MAXIMIZE, 0);
134 ASSERT_TRUE(::IsZoomed(window));
143 // This makes sure that creating an incognito window fail
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dvalue_helper.cc28 const TabRestoreService::Window& window,
30 if (window.tabs.empty()) {
35 for (size_t i = 0; i < window.tabs.size(); ++i) {
37 if (TabToValue(window.tabs[i], tab_value.get()))
42 dictionary->SetString("type", "window");
43 dictionary->SetDouble("timestamp", window.timestamp.ToDoubleT());
27 WindowToValue( const TabRestoreService::Window& window, DictionaryValue* dictionary) argument
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
H A DWindowedPluginTest.h35 HWND window() const { return m_window; } function in class:WindowedPluginTest
/external/webkit/Tools/MiniBrowser/qt/
H A Dmain.cpp44 BrowserWindow* window = new BrowserWindow(context, &app.m_windowOptions); local
45 UrlLoader loader(window, app.urls().at(0), app.robotTimeout(), app.robotExtraTime());
47 window->show();
62 BrowserWindow* window = new BrowserWindow(context, &app.m_windowOptions); local
64 context->setParent(window);
66 window->load(urls.at(0));
69 window->newWindow(urls.at(i));
/external/webkit/Tools/WebKitAPITest/
H A DHostWindow.h41 HWND window() const { return m_window; } function in class:WebKitAPITest::HostWindow
/external/chromium/chrome/browser/metrics/
H A Dmetrics_service_uitest.cc31 // We need to show the window so web content type tabs load.
37 scoped_refptr<BrowserProxy> window = automation()->GetBrowserWindow(0); local
38 ASSERT_TRUE(window.get());
43 ASSERT_TRUE(window->AppendTab(net::FilePathToFileURL(page1_path)));
48 ASSERT_TRUE(window->AppendTab(net::FilePathToFileURL(page2_path)));
86 scoped_refptr<BrowserProxy> window = automation()->GetBrowserWindow(0); local
87 ASSERT_TRUE(window.get());
90 scoped_refptr<TabProxy> tab(window->GetTab(1));
/external/chromium/chrome/browser/ui/gtk/
H A Dfocus_store_gtk.cc23 GtkWindow* window = platform_util::GetTopLevel(widget); local
24 if (window)
25 focus_widget = window->focus_widget;
H A Dchrome_gtk_frame.cc148 GtkWindow* window = local
150 window->type = GTK_WINDOW_TOPLEVEL;
151 return GTK_WIDGET(window);
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A DpanoramiXext.h39 Window window; /* PanoramiX window - may not exist */ member in struct:__anon8245
/external/skia/src/utils/mac/
H A Dskia_mac.cpp7 WindowRef window; local
19 CreateNewWindow(kDocumentWindowClass, attrs, &bounds, &window);
27 (void)create_sk_window(window);
28 SizeWindow(window, 640, 480, false);
31 // The window was created hidden so show it.
32 ShowWindow( window );
/external/webkit/LayoutTests/fast/encoding/resources/
H A Dparser-tests.js15 if (window.layoutTestController) {
28 window.receivedResults = function () {
52 if (window.layoutTestController)
/external/webkit/Source/WebCore/dom/
H A DWindowEventContext.h44 DOMWindow* window() const;
53 inline DOMWindow* WindowEventContext::window() const function in class:WebCore::WindowEventContext
/external/webkit/Source/WebKit/chromium/src/win/
H A DWebScreenInfoFactory.cpp50 WebScreenInfo WebScreenInfoFactory::screenInfo(HWND window) argument
52 HMONITOR monitor = MonitorFromWindow(window, MONITOR_DEFAULTTOPRIMARY);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DGetValueNetscapeWindow.cpp43 virtual NPError NPP_SetWindow(NPP instance, NPWindow* window) argument
61 if (hwnd == window->window) {
62 pluginLog(instance, "NPN_GetValue(NPNVnetscapeWindow) returned the same value as NPWindow::window");
73 static PluginTest::Register<GetValueNetscapeWindow> getValueNetscapeWindow("get-value-netscape-window");
H A DWindowGeometryInitializedBeforeSetWindow.cpp43 virtual NPError NPP_SetWindow(NPP instance, NPWindow* window) argument
49 if (window->type != NPWindowTypeWindow) {
50 pluginLog(instance, "window->type should be NPWindowTypeWindow but was %d", window->type);
54 HWND hwnd = reinterpret_cast<HWND>(window->window);
78 if (rect.left != window->x || rect.top != window->y || (rect.right - rect.left) != window->width || (rect.bottom - rect.top) != window
[all...]
/external/webkit/Tools/MiniBrowser/win/
H A DBrowserWindow.h47 HWND window() const { return m_window; } function in class:BrowserWindow
/external/chromium/base/
H A Dfix_wp64.h34 inline LONG_PTR SetWindowLongPtrA(HWND window, int index, LONG_PTR new_long) { argument
35 return ::SetWindowLongA(window, index, static_cast<LONG>(new_long));
41 inline LONG_PTR SetWindowLongPtrW(HWND window, int index, LONG_PTR new_long) { argument
42 return ::SetWindowLongW(window, index, static_cast<LONG>(new_long));
48 inline LONG_PTR GetWindowLongPtrA(HWND window, int index) { argument
49 return ::GetWindowLongA(window, index);
55 inline LONG_PTR GetWindowLongPtrW(HWND window, int index) { argument
56 return ::GetWindowLongW(window, index);
62 inline LONG_PTR SetClassLongPtrA(HWND window, int index, LONG_PTR new_long) { argument
63 return ::SetClassLongA(window, inde
69 SetClassLongPtrW(HWND window, int index, LONG_PTR new_long) argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dgoogle_update_chromeos.cc16 #include "views/window/window.h"
34 void GoogleUpdate::CheckForUpdate(bool install_if_newer, Window* window) { argument
41 window, MessageLoop::current()));
48 Window* window,
47 InitiateGoogleUpdateCheck(bool install_if_newer, Window* window, MessageLoop* main_loop) argument
H A Dwm_message_listener.cc28 ProcessMessage(message, client_event->window);
41 GdkWindow* window) {
42 FOR_EACH_OBSERVER(Observer, observers_, ProcessWmMessage(message, window));
40 ProcessMessage(const WmIpc::Message& message, GdkWindow* window) argument
/external/chromium/chrome/browser/chromeos/login/
H A Dproxy_settings_dialog.cc31 gfx::NativeWindow window)
34 window,
30 ProxySettingsDialog(LoginHtmlDialog::Delegate* delegate, gfx::NativeWindow window) argument
/external/chromium/chrome/browser/
H A Didle_linux.cc27 virtual bool ShouldStopIterating(XID window) { argument
28 if (!ui::IsWindowVisible(window) || !IsScreensaverWindow(window))
35 bool IsScreensaverWindow(XID window) const {
37 if (!ui::IsX11WindowFullScreen(window))
40 // For xscreensaver, the window should have _SCREENSAVER_VERSION property.
41 if (ui::PropertyExists(window, "_SCREENSAVER_VERSION"))
44 // For all others, like gnome-screensaver, the window's WM_CLASS property
47 if (!ui::GetStringProperty(window, "WM_CLASS", &value))

Completed in 3020 milliseconds

1234567891011>>