Searched refs:root_window (Results 1 - 25 of 257) sorted by relevance

1234567891011

/external/chromium_org/ui/aura/client/
H A Devent_client.cc17 void SetEventClient(Window* root_window, EventClient* client) { argument
18 DCHECK_EQ(root_window->GetRootWindow(), root_window);
19 root_window->SetProperty(kRootWindowEventClientKey, client);
22 EventClient* GetEventClient(const Window* root_window) { argument
23 if (root_window)
24 DCHECK_EQ(root_window->GetRootWindow(), root_window);
25 return root_window ?
26 root_window
[all...]
H A Dscreen_position_client.cc18 void SetScreenPositionClient(Window* root_window, argument
20 DCHECK_EQ(root_window->GetRootWindow(), root_window);
21 root_window->SetProperty(kScreenPositionClientKey, client);
24 ScreenPositionClient* GetScreenPositionClient(const Window* root_window) { argument
25 if (root_window)
26 DCHECK_EQ(root_window->GetRootWindow(), root_window);
27 return root_window ?
28 root_window
[all...]
H A Dcapture_client.cc18 void SetCaptureClient(Window* root_window, CaptureClient* client) { argument
19 root_window->SetProperty(kRootWindowCaptureClientKey, client);
22 CaptureClient* GetCaptureClient(Window* root_window) { argument
23 return root_window ?
24 root_window->GetProperty(kRootWindowCaptureClientKey) : NULL;
28 Window* root_window = window->GetRootWindow(); local
29 if (!root_window)
31 CaptureClient* capture_client = GetCaptureClient(root_window);
H A Dfocus_client.cc18 void SetFocusClient(Window* root_window, FocusClient* client) { argument
19 DCHECK_EQ(root_window->GetRootWindow(), root_window);
20 root_window->SetProperty(kRootWindowFocusClientKey, client);
28 const Window* root_window = window->GetRootWindow(); local
29 return root_window ?
30 root_window->GetProperty(kRootWindowFocusClientKey) : NULL;
H A Dwindow_tree_client.cc22 Window* root_window = window->GetRootWindow(); local
23 DCHECK(root_window);
24 root_window->SetProperty(kRootWindowWindowTreeClientKey, window_tree_client);
29 Window* root_window = window->GetRootWindow(); local
30 DCHECK(root_window);
32 root_window->GetProperty(kRootWindowWindowTreeClientKey);
H A Devent_client.h32 AURA_EXPORT void SetEventClient(Window* root_window, EventClient* client);
33 AURA_EXPORT EventClient* GetEventClient(const Window* root_window);
H A Dscreen_position_client.h37 virtual void ConvertHostPointToScreen(Window* root_window,
47 AURA_EXPORT void SetScreenPositionClient(Window* root_window,
50 const Window* root_window);
/external/chromium_org/ui/wm/public/
H A Ddrag_drop_client.cc18 void SetDragDropClient(Window* root_window, DragDropClient* client) { argument
19 DCHECK_EQ(root_window->GetRootWindow(), root_window);
20 root_window->SetProperty(kRootWindowDragDropClientKey, client);
23 DragDropClient* GetDragDropClient(Window* root_window) { argument
24 if (root_window)
25 DCHECK_EQ(root_window->GetRootWindow(), root_window);
26 return root_window ?
27 root_window
[all...]
H A Ddispatcher_client.cc40 void SetDispatcherClient(Window* root_window, DispatcherClient* client) { argument
41 DCHECK_EQ(root_window->GetRootWindow(), root_window);
42 root_window->SetProperty(kDispatcherClientKey, client);
45 DispatcherClient* GetDispatcherClient(Window* root_window) { argument
46 if (root_window)
47 DCHECK_EQ(root_window->GetRootWindow(), root_window);
48 return root_window ? root_window
[all...]
H A Dactivation_client.cc20 void SetActivationClient(Window* root_window, ActivationClient* client) { argument
21 root_window->SetProperty(kRootWindowActivationClientKey, client);
24 ActivationClient* GetActivationClient(Window* root_window) { argument
25 return root_window ?
26 root_window->GetProperty(kRootWindowActivationClientKey) : NULL;
H A Dtooltip_client.cc22 void SetTooltipClient(Window* root_window, TooltipClient* client) { argument
23 DCHECK_EQ(root_window->GetRootWindow(), root_window);
24 root_window->SetProperty(kRootWindowTooltipClientKey, client);
27 TooltipClient* GetTooltipClient(Window* root_window) { argument
28 if (root_window)
29 DCHECK_EQ(root_window->GetRootWindow(), root_window);
30 return root_window ?
31 root_window
[all...]
/external/chromium_org/ash/
H A Dscoped_target_root_window.cc11 aura::Window* root_window) {
12 Shell::GetInstance()->scoped_target_root_window_ = root_window;
10 ScopedTargetRootWindow( aura::Window* root_window) argument
H A Dshell_observer.h33 virtual void OnRootWindowAdded(aura::Window* root_window) {} argument
35 // Invoked after the shelf has been created for |root_window|.
36 virtual void OnShelfCreatedForRootWindow(aura::Window* root_window) {} argument
38 // Invoked when the shelf alignment in |root_window| is changed.
39 virtual void OnShelfAlignmentChanged(aura::Window* root_window) {} argument
44 // Invoked when entering or exiting fullscreen mode in |root_window|.
46 aura::Window* root_window) {}
45 OnFullscreenStateChanged(bool is_fullscreen, aura::Window* root_window) argument
/external/chromium_org/ui/views/
H A Ddrag_utils_aura.cc19 aura::Window* root_window = view->GetRootWindow(); local
20 aura::Window::ConvertPointToTarget(view, root_window, &root_location);
21 if (aura::client::GetDragDropClient(root_window)) {
22 aura::client::GetDragDropClient(root_window)->StartDragAndDrop(
23 data, root_window, view, root_location, operation, source);
/external/chromium_org/ash/high_contrast/
H A Dhigh_contrast_controller.cc33 void HighContrastController::UpdateDisplay(aura::Window* root_window) { argument
34 root_window->layer()->SetLayerInverted(enabled_);
37 void HighContrastController::OnRootWindowAdded(aura::Window* root_window) { argument
38 UpdateDisplay(root_window);
H A Dhigh_contrast_controller.h27 virtual void OnRootWindowAdded(aura::Window* root_window) OVERRIDE;
31 void UpdateDisplay(aura::Window* root_window);
/external/chromium_org/ui/aura/test/
H A Dtest_window_tree_client.cc12 TestWindowTreeClient::TestWindowTreeClient(Window* root_window) argument
13 : root_window_(root_window) {
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_screen_position_client.cc17 gfx::Point GetOrigin(const aura::Window* root_window) { argument
18 gfx::Point origin_in_pixels = root_window->GetHost()->GetBounds().origin();
19 aura::Window* window = const_cast<aura::Window*>(root_window);
38 aura::Window* root_window)
39 : root_window_(root_window) {
50 const aura::Window* root_window = window->GetRootWindow(); local
51 aura::Window::ConvertPointToTarget(window, root_window, point);
52 gfx::Point origin = GetOrigin(root_window);
59 const aura::Window* root_window = window->GetRootWindow(); local
60 gfx::Point origin = GetOrigin(root_window);
37 DesktopScreenPositionClient( aura::Window* root_window) argument
67 aura::Window* root_window = window->GetRootWindow(); local
[all...]
/external/chromium_org/ui/views/widget/
H A Dtooltip_manager_aura.cc48 aura::Window* root_window = source->GetNativeView()->GetRootWindow();
49 if (!root_window)
53 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot());
55 aura::client::GetScreenPositionClient(root_window);
58 screen_position_client->ConvertPointToScreen(root_window, &screen_loc);
59 gfx::Screen* screen = gfx::Screen::GetScreenFor(root_window);
92 aura::Window* root_window = GetWindow()->GetRootWindow(); local
93 if (aura::client::GetTooltipClient(root_window)) {
95 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot();
96 aura::Window::ConvertPointToTarget(root_window, GetWindo
103 aura::Window* root_window = GetWindow()->GetRootWindow(); local
122 UpdateTooltipForTarget(View* target, const gfx::Point& point, aura::Window* root_window) argument
[all...]
/external/chromium_org/ash/wm/panels/
H A Dattached_panel_window_targeter.h28 virtual void OnShelfCreatedForRootWindow(aura::Window* root_window) OVERRIDE;
29 virtual void OnShelfAlignmentChanged(aura::Window* root_window) OVERRIDE;
32 void UpdateTouchExtend(aura::Window* root_window);
H A Dattached_panel_window_targeter.cc32 aura::Window* root_window) {
33 UpdateTouchExtend(root_window);
37 aura::Window* root_window) {
42 UpdateTouchExtend(root_window);
45 void AttachedPanelWindowTargeter::UpdateTouchExtend(aura::Window* root_window) { argument
47 // in |root_window|.
48 if (panel_container_->GetRootWindow() != root_window)
31 OnShelfCreatedForRootWindow( aura::Window* root_window) argument
36 OnShelfAlignmentChanged( aura::Window* root_window) argument
/external/chromium_org/ash/wm/
H A Devent_client_impl.cc23 const aura::Window* root_window = window ? window->GetRootWindow() : NULL; local
24 if (!root_window ||
30 root_window,
33 root_window,
36 root_window,
46 root_window,
/external/chromium_org/ui/wm/core/
H A Dfocus_controller_unittest.cc221 ScopedFocusNotificationObserver(aura::Window* root_window) argument
222 : root_window_(root_window) {
239 ScopedTargetFocusNotificationObserver(aura::Window* root_window, int id) argument
240 : target_(root_window->GetChildById(id)) {
262 ScopedFocusedTextInputClientChanger(aura::Window* root_window, argument
264 : ScopedFocusNotificationObserver(root_window),
393 // window initializations, including the root_window()'s, so we create it
398 root_window()->AddPreTargetHandler(focus_controller_.get());
399 aura::client::SetFocusClient(root_window(), focus_controller_.get());
400 aura::client::SetActivationClient(root_window(), focus_controller
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item_views.cc60 aura::Window* root_window = view->GetRootWindow(); local
61 if (!root_window || !aura::client::GetDragDropClient(root_window))
66 aura::client::GetDragDropClient(root_window)->StartDragAndDrop(
68 root_window,
/external/chromium_org/ash/magnifier/
H A Dpartial_magnification_controller.cc135 aura::Window* root_window = GetCurrentRootWindow();
136 if (!root_window)
139 root_window->AddObserver(this);
142 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot());
150 params.parent = root_window;
183 aura::Window* root_window = local
185 DCHECK(root_window);
186 root_window->RemoveObserver(this);
205 aura::Window* root_window = *iter; local
206 if (root_window
[all...]

Completed in 4473 milliseconds

1234567891011