Searched defs:root_window (Results 26 - 50 of 165) sorted by relevance

1234567

/external/chromium_org/ui/aura/client/
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);
/external/chromium_org/ui/aura/test/
H A Daura_test_base.h43 Window* root_window() { return helper_->root_window(); } function in class:aura::test::AuraTestBase
/external/chromium_org/ui/wm/core/
H A Dinput_method_event_filter.cc31 aura::Window* root_window) {
32 root_window->SetProperty(aura::client::kRootWindowInputMethodKey,
30 SetInputMethodPropertyInRootWindow( aura::Window* root_window) argument
/external/chromium_org/ui/wm/public/
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 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/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/shelf/
H A Dshelf_window_watcher_item_delegate.cc51 aura::Window* root_window) {
53 return Shell::GetInstance()->delegate()->CreateContextMenu(root_window,
50 CreateContextMenu( aura::Window* root_window) argument
H A Dshelf_window_watcher_unittest.cc190 aura::Window* root_window = window->GetRootWindow(); local
192 root_window,
197 root_window,
256 aura::Window* root_window = window->GetRootWindow(); local
258 root_window,
263 root_window,
H A Dshelf_tooltip_manager_unittest.cc182 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
187 SetEventTarget(root_window, &key_event);
195 SetEventTarget(root_window, &touch_event);
226 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
238 SetEventTarget(root_window, &mouse_event);
256 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); local
267 SetEventTarget(root_window, &mouse_event);
280 SetEventTarget(root_window, &mouse_event);
/external/chromium_org/ash/shell/
H A Dwindow_watcher_shelf_item_delegate.cc39 aura::Window* root_window) {
38 CreateContextMenu( aura::Window* root_window) argument
/external/chromium_org/ash/test/
H A Dash_test_helper.cc154 aura::Window* root_window = Shell::GetTargetRootWindow(); local
155 if (!root_window)
156 root_window = Shell::GetPrimaryRootWindow();
157 DCHECK(root_window);
158 return root_window;
/external/chromium_org/ash/wm/overview/
H A Dwindow_grid.h49 WindowGrid(aura::Window* root_window,
89 const aura::Window* root_window() const { return root_window_; } function in class:ash::WindowGrid
H A Dtransparent_activate_window_button.cc31 views::Widget* InitEventHandler(aura::Window* root_window) { argument
38 params.parent = Shell::GetContainer(root_window,
H A Dwindow_selector_window.cc65 void WindowSelectorWindow::SetItemBounds(aura::Window* root_window, argument
71 transform_window_.SetTransform(root_window,
/external/chromium_org/athena/input/
H A Dinput_manager_impl.cc31 virtual void OnRootWindowCreated(aura::Window* root_window) OVERRIDE;
77 void InputManagerImpl::OnRootWindowCreated(aura::Window* root_window) { argument
78 aura::client::SetEventClient(root_window, this);
79 accelerator_manager_->OnRootWindowCreated(root_window);
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device_aura_unittest.cc70 new wm::DefaultActivationClient(helper_->root_window());
75 gfx::Rect desktop_bounds = root_window()->bounds();
81 desktop_window_.get(), root_window(), desktop_bounds);
87 root_window()->RemoveChild(desktop_window_.get());
94 aura::Window* root_window() { return helper_->root_window(); } function in class:content::__anon7242::DesktopCaptureDeviceAuraTest
109 content::DesktopMediaID::RegisterAuraWindow(root_window())));
/external/chromium_org/ui/views_content_client/
H A Dviews_content_client_main_parts_chromeos.cc76 aura::Window* root_window = wm_test_helper_->host()->window(); local
77 views_content_client()->task().Run(browser_context(), root_window); local
81 aura::client::SetDispatcherClient(root_window,
/external/chromium_org/ash/host/
H A Dtransformer_helper.cc25 SimpleRootWindowTransformer(const aura::Window* root_window, argument
27 : root_window_(root_window), transform_(transform) {}
/external/chromium_org/ash/screensaver/
H A Dscreensaver_view.cc138 aura::Window* root_window = ash::Shell::GetPrimaryRootWindow(); local
140 Shell::GetScreen()->GetDisplayNearestWindow(root_window).bounds();
148 params.parent = root_window;
/external/chromium_org/ash/
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/ash/wm/
H A Dstacking_controller.cc47 AlwaysOnTopController* GetAlwaysOnTopController(aura::Window* root_window) { argument
48 return GetRootWindowController(root_window)->always_on_top_controller();
/external/chromium_org/ash/wm/workspace/
H A Dphantom_window_controller.cc107 aura::Window* root_window,
115 params.parent = Shell::GetContainer(root_window,
106 CreatePhantomWidget( aura::Window* root_window, const gfx::Rect& bounds_in_screen) argument
/external/chromium_org/athena/content/
H A Dweb_contents_view_delegate_factory_impl.cc102 aura::Window* root_window = target_window->GetRootWindow(); local
104 aura::client::GetScreenPositionClient(root_window);
/external/chromium_org/athena/main/
H A Dathena_launcher.cc109 aura::Window* root_window = athena::AthenaEnv::Get()->GetHost()->window(); local
111 aura::client::SetVisibilityClient(root_window,
114 athena::InputManager::Create()->OnRootWindowCreated(root_window);
115 athena::ScreenManager::Create(root_window);

Completed in 4213 milliseconds

1234567