/external/chromium_org/ash/ |
D | root_window_controller.cc | 267 void RootWindowController::CreateForPrimaryDisplay(AshWindowTreeHost* host) { in CreateForPrimaryDisplay() 268 RootWindowController* controller = new RootWindowController(host); in CreateForPrimaryDisplay() 269 controller->Init(RootWindowController::PRIMARY, in CreateForPrimaryDisplay() 273 void RootWindowController::CreateForSecondaryDisplay(AshWindowTreeHost* host) { in CreateForSecondaryDisplay() 274 RootWindowController* controller = new RootWindowController(host); in CreateForSecondaryDisplay() 275 controller->Init(RootWindowController::SECONDARY, false /* first run */); in CreateForSecondaryDisplay() 279 RootWindowController* RootWindowController::ForShelf( in ForShelf() 286 RootWindowController* RootWindowController::ForWindow( in ForWindow() 293 RootWindowController* RootWindowController::ForTargetRootWindow() { in ForTargetRootWindow() 299 aura::Window* RootWindowController::GetContainerForWindow( in GetContainerForWindow() [all …]
|
D | root_window_controller.h | 81 class ASH_EXPORT RootWindowController : public ShellObserver { 97 static RootWindowController* ForShelf(const aura::Window* window); 100 static RootWindowController* ForWindow(const aura::Window* window); 103 static RootWindowController* ForTargetRootWindow(); 108 virtual ~RootWindowController(); 242 explicit RootWindowController(AshWindowTreeHost* host); 319 DISALLOW_COPY_AND_ASSIGN(RootWindowController); 324 ASH_EXPORT RootWindowController* GetRootWindowController(
|
D | ash_touch_exploration_manager_chromeos.h | 17 class RootWindowController; variable 28 RootWindowController* root_window_controller); 48 RootWindowController* root_window_controller_;
|
D | root_window_settings.h | 17 class RootWindowController; variable 30 RootWindowController* controller;
|
D | ash_touch_exploration_manager_chromeos_unittest.cc | 17 RootWindowController* controller = Shell::GetPrimaryRootWindowController(); in TEST_F()
|
/external/chromium_org/chrome/browser/ |
D | fullscreen_chromeos.cc | 16 ash::RootWindowController* controller = in IsFullScreenMode() 17 ash::RootWindowController::ForTargetRootWindow(); in IsFullScreenMode()
|
D | fullscreen_aurax11.cc | 18 ash::RootWindowController* controller = in IsFullScreenMode() 19 ash::RootWindowController::ForTargetRootWindow(); in IsFullScreenMode()
|
D | fullscreen_win.cc | 107 ash::RootWindowController* controller = in IsFullScreenMode() 108 ash::RootWindowController::ForTargetRootWindow(); in IsFullScreenMode()
|
/external/chromium_org/ash/desktop_background/ |
D | desktop_background_widget_controller.cc | 23 ShowWallpaperAnimationObserver(RootWindowController* root_window_controller, in ShowWallpaperAnimationObserver() 58 RootWindowController* root_window_controller_; 107 RootWindowController* root_window_controller) { in StartAnimating()
|
D | desktop_background_widget_controller.h | 16 class RootWindowController; variable 46 void StartAnimating(RootWindowController* root_window_controller);
|
D | desktop_background_controller_unittest.cc | 80 RootWindowController* root_window_controller = in SetUp() 163 RootWindowController* root_window_controller = in TEST_F() 205 RootWindowController* root_window_controller = in TEST_F() 247 RootWindowController* root_window_controller = in TEST_F()
|
/external/chromium_org/ash/touch/ |
D | touch_hud_projection.h | 32 RootWindowController* controller) OVERRIDE; 34 RootWindowController* controller) OVERRIDE;
|
D | touch_observer_hud.cc | 75 RootWindowController* controller = GetRootWindowController(root_window_); in Remove() 124 RootWindowController* controller = GetRootWindowController(root_window_); in OnDisplayConfigurationChanging() 146 RootWindowController* controller = GetRootWindowController(root_window_); in OnDisplayConfigurationChanged()
|
D | touch_transformer_controller.cc | 225 RootWindowController::ForWindow(root)->ash_host()->UpdateDisplayID( in UpdateTouchTransformer() 245 RootWindowController::ForWindow(root)->ash_host()->UpdateDisplayID( in UpdateTouchTransformer() 267 RootWindowController::ForWindow(root1)->ash_host()->UpdateDisplayID( in UpdateTouchTransformer() 269 RootWindowController::ForWindow(root2)->ash_host()->UpdateDisplayID( in UpdateTouchTransformer() 287 RootWindowController::ForWindow(root)->ash_host()->UpdateDisplayID( in UpdateTouchTransformer()
|
D | touch_hud_debug.h | 66 RootWindowController* controller) OVERRIDE; 68 RootWindowController* controller) OVERRIDE;
|
D | touch_observer_hud.h | 49 RootWindowController* controller) = 0; 51 RootWindowController* controller) = 0;
|
D | touch_observer_hud_unittest.cc | 166 RootWindowController* GetInternalRootController() { in GetInternalRootController() 171 RootWindowController* GetExternalRootController() { in GetExternalRootController() 176 RootWindowController* GetPrimaryRootController() { in GetPrimaryRootController() 181 RootWindowController* GetSecondaryRootController() { in GetSecondaryRootController()
|
D | touch_hud_projection.cc | 177 RootWindowController* controller) { in SetHudForRootWindowController() 182 RootWindowController* controller) { in UnsetHudForRootWindowController()
|
/external/chromium_org/ash/display/ |
D | display_controller.cc | 270 std::vector<RootWindowController*> to_delete; in Shutdown() 271 RootWindowController* primary_rwc = NULL; in Shutdown() 275 RootWindowController* rwc = GetRootWindowController(*iter); in Shutdown() 297 RootWindowController::CreateForPrimaryDisplay( in InitDisplays() 306 RootWindowController::CreateForSecondaryDisplay(ash_host); in InitDisplays() 344 RootWindowController* controller = GetRootWindowController(root_window); in CloseChildWindows() 377 std::vector<RootWindowController*> 379 std::vector<RootWindowController*> controllers; in GetAllRootWindowControllers() 383 RootWindowController* controller = in GetAllRootWindowControllers() 583 RootWindowController::CreateForSecondaryDisplay(ash_host); in OnDisplayAdded() [all …]
|
D | display_controller.h | 48 class RootWindowController; variable 132 std::vector<RootWindowController*> GetAllRootWindowControllers();
|
/external/chromium_org/chrome/browser/notifications/ |
D | fullscreen_notification_blocker.cc | 26 ash::RootWindowController* controller = in DoesFullscreenModeBlockNotifications() 27 ash::RootWindowController::ForTargetRootWindow(); in DoesFullscreenModeBlockNotifications()
|
/external/chromium_org/ash/shelf/ |
D | shelf.cc | 65 RootWindowController::ForShelf(Shell::GetPrimaryRootWindow())->shelf(); in ForPrimaryDisplay() 71 ShelfWidget* shelf_widget = RootWindowController::ForShelf(window)->shelf(); in ForWindow()
|
/external/chromium_org/ash/test/ |
D | status_area_widget_test_helper.cc | 25 RootWindowController* primary_controller = in GetSecondaryStatusAreaWidget()
|
/external/chromium_org/ash/accelerators/ |
D | accelerator_controller.cc | 398 RootWindowController* controller = in HandleShowMessageCenterBubble() 399 RootWindowController::ForTargetRootWindow(); in HandleShowMessageCenterBubble() 412 RootWindowController* controller = in HandleShowSystemTrayBubble() 413 RootWindowController::ForTargetRootWindow(); in HandleShowSystemTrayBubble() 609 RootWindowController* controller = in HandleTouchHudClear() 610 RootWindowController::ForTargetRootWindow(); in HandleTouchHudClear() 619 RootWindowController* controller = in HandleTouchHudModeChange() 620 RootWindowController::ForTargetRootWindow(); in HandleTouchHudModeChange()
|
/external/chromium_org/chrome/browser/ui/ash/ |
D | shelf_browsertest.cc | 20 ash::RootWindowController::ForShelf( in IN_PROC_BROWSER_TEST_F()
|