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

1 2 3

  /external/chromium_org/ui/aura/client/
focus_client.cc 7 #include "ui/aura/root_window.h"
18 void SetFocusClient(RootWindow* root_window, FocusClient* client) {
19 root_window->SetProperty(kRootWindowFocusClientKey, client);
27 const RootWindow* root_window = window->GetRootWindow(); local
28 return root_window ?
29 root_window->GetProperty(kRootWindowFocusClientKey) : NULL;
capture_client.cc 7 #include "ui/aura/root_window.h"
18 void SetCaptureClient(RootWindow* root_window, CaptureClient* client) {
19 root_window->SetProperty(kRootWindowCaptureClientKey, client);
22 CaptureClient* GetCaptureClient(RootWindow* root_window) {
23 return root_window ?
24 root_window->GetProperty(kRootWindowCaptureClientKey) : NULL;
28 RootWindow* root_window = window->GetRootWindow(); local
29 return root_window ?
30 GetCaptureClient(root_window)->GetCaptureWindow() : NULL;
stacking_client.cc 8 #include "ui/aura/root_window.h"
22 RootWindow* root_window = window->GetRootWindow(); local
23 DCHECK(root_window);
24 root_window->SetProperty(kRootWindowStackingClientKey, stacking_client);
29 RootWindow* root_window = window->GetRootWindow(); local
30 DCHECK(root_window);
32 root_window->GetProperty(kRootWindowStackingClientKey);
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_desktop_root_window_host_x11.cc 48 aura::RootWindow* root_window = views::DesktopRootWindowHostX11::Init( local
55 return root_window;
  /external/chromium_org/content/browser/renderer_host/
touch_smooth_scroll_gesture_aura.cc 8 #include "ui/aura/root_window.h"
20 aura::RootWindow* root_window = window->GetRootWindow(); local
21 aura::Window::ConvertPointToTarget(window, root_window, &screen_location);
23 root_window->ConvertPointToHost(&screen_location);
27 root_window->AsRootWindowHostDelegate();
backing_store_gtk.h 43 XID root_window() const { return root_window_; } function in class:content::BackingStoreGtk
  /external/chromium_org/ui/aura/test/
aura_test_base.h 44 RootWindow* root_window() { return helper_->root_window(); } function in class:aura::test::AuraTestBase
  /external/chromium_org/ui/keyboard/
keyboard_ui_handler.cc 40 aura::RootWindow* root_window = local
42 if (!root_window) {
47 if (!keyboard::InsertText(text, root_window))
  /external/chromium_org/ui/snapshot/
snapshot_aura.cc 11 #include "ui/aura/root_window.h"
43 aura::RootWindow* root_window = window->GetRootWindow(); local
44 if (root_window)
45 root_window->GetRootTransform().TransformRect(&read_pixels_bounds);
  /external/chromium_org/ui/views/
drag_utils.cc 12 #include "ui/aura/root_window.h"
51 aura::RootWindow* root_window = view->GetRootWindow(); local
52 aura::Window::ConvertPointToTarget(view, root_window, &root_location);
53 if (aura::client::GetDragDropClient(root_window)) {
54 aura::client::GetDragDropClient(root_window)->StartDragAndDrop(
55 data, root_window, view, root_location, operation, source);
  /external/chromium_org/ash/test/
ash_test_helper.cc 101 aura::RootWindow* root_window = Shell::GetActiveRootWindow(); local
102 if (!root_window)
103 root_window = Shell::GetPrimaryRootWindow();
104 DCHECK(root_window);
105 return root_window;
  /external/chromium_org/ash/wm/
ash_native_cursor_manager_unittest.cc 11 #include "ui/aura/root_window.h"
150 aura::RootWindow* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
160 root_window->MoveCursorTo(gfx::Point(10, 10));
171 EXPECT_TRUE(root_window->QueryMouseLocationForTest(&mouse_location));
174 EXPECT_FALSE(root_window->QueryMouseLocationForTest(&mouse_location));
base_layout_manager.h 41 explicit BaseLayoutManager(aura::RootWindow* root_window);
104 aura::RootWindow* root_window() { return root_window_; } function in class:ash::internal::BaseLayoutManager
capture_controller.cc 9 #include "ui/aura/root_window.h"
46 aura::RootWindow* root_window = *iter; local
47 root_window->gesture_recognizer()->
56 aura::RootWindow* root_window = *iter; local
57 root_window->UpdateCapture(old_capture_window, new_capture_window);
event_client_impl.cc 23 const aura::RootWindow* root_window = window ? window->GetRootWindow() : NULL; local
24 if (!root_window)
28 root_window,
31 root_window,
34 root_window,
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_screen_win.cc 8 #include "ui/aura/root_window.h"
56 aura::RootWindow* root_window = window->GetRootWindow(); local
57 return root_window ? root_window->GetAcceleratedWidget() : NULL;
desktop_screen_position_client.cc 7 #include "ui/aura/root_window.h"
17 gfx::Point GetOrigin(const aura::RootWindow* root_window) {
18 gfx::Point origin_in_pixels = root_window->GetHostOrigin();
19 aura::RootWindow* window = const_cast<aura::RootWindow*>(root_window);
47 const aura::RootWindow* root_window = window->GetRootWindow(); local
48 aura::Window::ConvertPointToTarget(window, root_window, point);
49 gfx::Point origin = GetOrigin(root_window);
55 const aura::RootWindow* root_window = window->GetRootWindow(); local
56 gfx::Point origin = GetOrigin(root_window);
58 aura::Window::ConvertPointToTarget(root_window, window, point)
    [all...]
  /external/chromium_org/ash/accelerators/
nested_dispatcher_controller_unittest.cc 14 #include "ui/aura/root_window.h"
114 aura::RootWindow* root_window = ash::Shell::GetPrimaryRootWindow(); local
115 aura::client::GetDispatcherClient(root_window)->RunWithDispatcher(
135 aura::RootWindow* root_window = ash::Shell::GetPrimaryRootWindow(); local
136 aura::client::GetDispatcherClient(root_window)->RunWithDispatcher(
146 aura::RootWindow* root_window = ash::Shell::GetPrimaryRootWindow(); local
155 aura::client::GetDispatcherClient(root_window)->RunWithDispatcher(
157 root_window,
  /external/chromium_org/chrome/browser/ui/ash/
ash_keyboard_controller_proxy.cc 23 #include "ui/aura/root_window.h"
44 aura::Window* root_window = ash::Shell::GetInstance()->GetPrimaryRootWindow(); local
45 DCHECK(root_window);
46 return root_window->GetProperty(aura::client::kRootWindowInputMethodKey);
  /external/chromium_org/ui/views/widget/
tooltip_manager_aura.cc 9 #include "ui/aura/root_window.h"
56 aura::RootWindow* root_window = window_->GetRootWindow(); local
57 if (aura::client::GetTooltipClient(root_window)) {
58 gfx::Point view_point = root_window->GetLastMouseLocationInRoot();
59 aura::Window::ConvertPointToTarget(root_window, window_, &view_point);
61 UpdateTooltipForTarget(view, view_point, root_window);
66 aura::RootWindow* root_window = window_->GetRootWindow(); local
67 if (aura::client::GetTooltipClient(root_window)) {
68 gfx::Point view_point = root_window->GetLastMouseLocationInRoot();
69 aura::Window::ConvertPointToTarget(root_window, window_, &view_point)
    [all...]
  /external/chromium_org/ash/display/
screen_position_controller.cc 18 #include "ui/aura/root_window.h"
70 aura::RootWindow* root_window = window->GetRootWindow(); local
72 aura::Window::ConvertPointToTarget(window, root_window, &location_in_root);
75 if (!root_window->ContainsPointInRoot(location_in_root)) {
93 root_window->ConvertPointToNativeScreen(&location_in_native);
101 root_window = root_windows[i];
103 root_window->ConvertPointFromNativeScreen(&location_in_root);
112 return std::make_pair(root_window, location_in_root);
140 aura::RootWindow* root_window,
142 root_window->ConvertPointFromHost(point)
    [all...]
  /external/chromium_org/ash/launcher/
launcher_tooltip_manager_unittest.cc 16 #include "ui/aura/root_window.h"
182 aura::RootWindow* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
187 SetEventTarget(root_window, &key_event);
195 SetEventTarget(root_window, &touch_event);
224 aura::RootWindow* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
235 SetEventTarget(root_window, &mouse_event);
  /external/chromium_org/ash/magnifier/
partial_magnification_controller.cc 9 #include "ui/aura/root_window.h"
134 aura::RootWindow* root_window = GetCurrentRootWindow();
135 if (!root_window)
138 root_window->AddObserver(this);
140 gfx::Point mouse(root_window->GetLastMouseLocationInRoot());
148 params.parent = root_window;
181 aura::RootWindow* root_window = local
183 DCHECK(root_window);
184 root_window->RemoveObserver(this);
203 aura::RootWindow* root_window = *iter local
    [all...]
  /external/chromium_org/ash/screensaver/
screensaver_view.cc 14 #include "ui/aura/root_window.h"
146 aura::RootWindow* root_window = ash::Shell::GetPrimaryRootWindow(); local
148 Shell::GetScreen()->GetDisplayNearestWindow(root_window).bounds();
156 params.parent = root_window;
  /external/chromium_org/chrome/browser/chromeos/ui/
app_launch_view.cc 22 #include "ui/aura/root_window.h"
172 aura::RootWindow* root_window = ash::Shell::GetPrimaryRootWindow(); local
181 root_window,

Completed in 537 milliseconds

1 2 3