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

1234567891011

/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);
H A Dexit_warning_handler.cc158 aura::Window* root_window = Shell::GetTargetRootWindow();
160 gfx::Size rs = root_window->bounds().size();
175 Shell::GetContainer(root_window, kShellWindowId_SettingBubbleContainer);
/external/chromium_org/ash/autoclick/
H A Dautoclick_controller.cc183 aura::Window* root_window = wm::GetRootWindowAt(screen_location); local
184 DCHECK(root_window) << "Root window not found while attempting autoclick.";
188 ::wm::ConvertPointFromScreen(root_window, &click_location);
190 aura::WindowTreeHost* host = root_window->GetHost();
/external/chromium_org/ash/desktop_background/
H A Ddesktop_background_controller.cc138 void DesktopBackgroundController::OnRootWindowAdded(aura::Window* root_window) { argument
152 InstallDesktopController(root_window);
198 aura::Window* root_window) {
205 CreateDesktopBackground(root_window, container_id);
213 GetRootWindowController(root_window)->SetAnimatingWallpaperController(
216 component->StartAnimating(GetRootWindowController(root_window));
197 InstallDesktopController( aura::Window* root_window) argument
H A Ddesktop_background_controller.h103 virtual void OnRootWindowAdded(aura::Window* root_window) OVERRIDE;
128 // |root_window|.
129 void InstallDesktopController(aura::Window* root_window);
H A Ddesktop_background_view.cc213 views::Widget* CreateDesktopBackground(aura::Window* root_window, argument
225 params.parent = root_window->GetChildById(container_id);
235 GetRootWindowController(root_window);
H A Ddesktop_background_widget_controller.cc94 bool DesktopBackgroundWidgetController::Reparent(aura::Window* root_window, argument
99 root_window->GetChildById(dest_container));
H A Ddesktop_background_widget_controller.h36 // Move component from |src_container| in |root_window| to |dest_container|.
39 bool Reparent(aura::Window* root_window,
/external/chromium_org/ash/display/
H A Dcursor_window_controller.cc139 aura::Window* root_window = Shell::GetInstance()->display_controller()-> local
141 if (!root_window)
144 SetContainer(GetRootWindowController(root_window)->GetContainer(
H A Ddisplay_configurator_animation.cc121 aura::Window* root_window = *it; local
124 hiding_layer->SetBounds(root_window->bounds());
126 ash::Shell::GetContainer(root_window,
138 hiding_layers_[root_window] = hiding_layer;
175 aura::Window* root_window = *it; local
177 if (hiding_layers_.find(root_window) == hiding_layers_.end()) {
183 hiding_layer->SetBounds(root_window->bounds());
186 root_window, ash::kShellWindowId_OverlayContainer)->layer();
190 hiding_layers_[root_window] = hiding_layer;
192 hiding_layer = hiding_layers_[root_window];
[all...]
H A Ddisplay_controller.cc343 aura::Window* root_window = GetWindow(it->second); local
344 RootWindowController* controller = GetRootWindowController(root_window);
348 while (!root_window->children().empty()) {
349 aura::Window* child = root_window->children()[0];
522 aura::Window* root_window = GetRootWindowForDisplayId(display.id()); local
525 dst_root_window = root_window;
539 aura::Window* root_window = GetRootWindowForDisplayId(display.id()); local
541 aura::client::GetScreenPositionClient(root_window);
542 client->ConvertPointFromScreen(root_window, &center);
543 root_window
557 const aura::Window* root_window = window->GetRootWindow(); local
684 aura::Window* root_window = GetRootWindowForDisplayId(display.id()); local
[all...]
H A Ddisplay_controller_unittest.cc1180 aura::Window* root_window = root_windows[0]; local
1181 ui::test::EventGenerator generator(root_window);
H A Dmouse_cursor_event_filter.cc43 void ConvertPointFromScreenToNative(const aura::Window* root_window, argument
45 ::wm::ConvertPointFromScreen(root_window, point);
46 root_window->GetHost()->ConvertPointToNativeScreen(point);
49 gfx::Rect GetNativeEdgeBounds(const aura::Window* root_window, argument
52 gfx::Rect native_bounds = root_window->GetHost()->GetBounds();
54 GetRootWindowController(root_window)->ash_host()->GetHostInsets());
56 ConvertPointFromScreenToNative(root_window, &start);
57 ConvertPointFromScreenToNative(root_window, &end);
78 // of the native window for |root_window|.
79 gfx::Rect CreateVerticalEdgeBoundsInNative(const aura::Window* root_window,
[all...]
H A Droot_window_transformers.cc52 gfx::Transform CreateRotationTransform(aura::Window* root_window, argument
63 if (info.rotation() == root_window->GetProperty(kRotationPropertyKey))
65 root_window->SetProperty(kRotationPropertyKey, info.rotation());
94 gfx::Transform CreateMagnifierTransform(aura::Window* root_window) { argument
H A Droot_window_transformers_unittest.cc278 aura::Window* root_window = root_windows[0]; local
279 ui::test::EventGenerator generator(root_window);
H A Dscreen_ash.cc234 const aura::Window* root_window = window->GetRootWindow(); local
235 if (!root_window)
237 const RootWindowSettings* rws = GetRootWindowSettings(root_window);
H A Dscreen_position_controller.cc71 aura::Window* root_window = window->GetRootWindow(); local
73 aura::Window::ConvertPointToTarget(window, root_window, &location_in_root);
76 if (!root_window->ContainsPointInRoot(location_in_root)) {
98 root_window->GetHost()->ConvertPointToNativeScreen(&location_in_native);
105 root_window = root_windows[i];
117 return std::make_pair(root_window, location_in_root);
143 aura::Window* root_window,
145 aura::Window* root = root_window->GetRootWindow();
142 ConvertHostPointToScreen( aura::Window* root_window, gfx::Point* point) argument
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_controller.cc155 aura::Window* root_window,
171 new DragDropTracker(root_window, drag_drop_window_delegate_.get());
200 ::wm::ConvertPointToScreen(root_window, &start_location);
153 StartDragAndDrop( const ui::OSExchangeData& data, aura::Window* root_window, aura::Window* source_window, const gfx::Point& root_location, int operation, ui::DragDropTypes::DragEventSource source) argument
H A Ddrag_drop_controller.h48 aura::Window* root_window,
H A Ddrag_drop_controller_unittest.cc164 aura::Window* root_window,
172 data, root_window, source_window, location, operation, source);
/external/chromium_org/ash/first_run/
H A Ddesktop_cleaner.cc98 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
101 Shell::GetContainer(root_window, kContainerIdsToHide[i]);
H A Dfirst_run_helper_unittest.cc82 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
87 Shell::GetContainer(root_window, containers_to_check[i]);
93 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
98 Shell::GetContainer(root_window, containers_to_check[i]);
/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/ash/host/
H A Dash_window_tree_host_x11.cc230 aura::Window* root_window = window(); local
232 aura::client::GetScreenPositionClient(root_window);
242 screen_position_client->ConvertHostPointToScreen(root_window,
244 screen_position_client->ConvertPointFromScreen(root_window, &location);

Completed in 2959 milliseconds

1234567891011