Searched defs:root_window (Results 1 - 25 of 165) sorted by relevance

1234567

/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
/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 Ddefault_capture_client.cc14 DefaultCaptureClient::DefaultCaptureClient(Window* root_window) argument
15 : root_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 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;
/external/chromium_org/ash/accelerators/
H A Daccelerator_filter_unittest.cc92 aura::Window* root_window = Shell::GetPrimaryRootWindow(); local
98 dispatch_helper.set_target(root_window);
108 dispatch_helper.set_target(root_window);
/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);
/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/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/
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/shelf/
H A Dapp_list_shelf_item_delegate.cc40 aura::Window* root_window) {
41 return Shell::GetInstance()->delegate()->CreateContextMenu(root_window,
39 CreateContextMenu( aura::Window* root_window) argument
H A Dshelf_layout_manager_observer.h32 virtual void OnAutoHideBehaviorChanged(aura::Window* root_window, argument
/external/chromium_org/ash/test/
H A Dtest_shelf_item_delegate.cc35 aura::Window* root_window) {
34 CreateContextMenu( aura::Window* root_window) argument
H A Dui_controls_factory_ash.cc33 UIControlsAura* GetUIControlsForRootWindow(aura::Window* root_window) { argument
35 root_window->GetProperty(kUIControlsKey);
38 aura::test::CreateUIControlsAura(root_window->GetHost());
39 // Pass the ownership to the |root_window|.
40 root_window->SetProperty(kUIControlsKey, native_ui_control);
/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,
H A Dscreen_dimmer.cc26 ScreenDimmer::ScreenDimmer(aura::Window* root_window) argument
27 : root_window_(root_window),
H A Dsystem_background_controller.cc14 aura::Window* root_window,
16 : root_window_(root_window),
13 SystemBackgroundController( aura::Window* root_window, SkColor color) argument
/external/chromium_org/ash/wm/gestures/
H A Doverview_gesture_handler_unittest.cc42 aura::Window* root_window = Shell::GetPrimaryRootWindow(); local
45 ui::test::EventGenerator generator(root_window, root_window);
69 aura::Window* root_window = Shell::GetPrimaryRootWindow(); local
72 ui::test::EventGenerator generator(root_window, root_window);
86 aura::Window* root_window = Shell::GetPrimaryRootWindow(); local
89 ui::test::EventGenerator generator(root_window, root_window);
146 aura::Window* root_window local
163 aura::Window* root_window = Shell::GetPrimaryRootWindow(); local
[all...]
/external/chromium_org/ash/wm/panels/
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/athena/test/
H A Dathena_test_base.h37 aura::Window* root_window() { return helper_->GetRootWindow(); } function in class:athena::test::AthenaTestBase
/external/chromium_org/chrome/browser/chromeos/accessibility/
H A Dsticky_keys_browsertest.cc41 gfx::NativeWindow root_window = local
44 ui_test_utils::SendKeyPressToWindowSync(root_window,
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dfocus_ring_layer.h40 void Set(aura::Window* root_window, const gfx::Rect& bounds);
43 aura::Window* root_window() { return root_window_; } function in class:chromeos::FocusRingLayer
49 void CreateOrUpdateLayer(aura::Window* root_window, const char* layer_name);

Completed in 1056 milliseconds

1234567