| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_ROOT_WINDOW_CONTROLLER_H_ | 5 #ifndef ASH_ROOT_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_ROOT_WINDOW_CONTROLLER_H_ | 6 #define ASH_ROOT_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 // Handles double clicks on the panel window header. | 299 // Handles double clicks on the panel window header. |
| 300 std::unique_ptr<ui::EventHandler> panel_container_handler_; | 300 std::unique_ptr<ui::EventHandler> panel_container_handler_; |
| 301 | 301 |
| 302 std::unique_ptr<DesktopBackgroundWidgetController> wallpaper_controller_; | 302 std::unique_ptr<DesktopBackgroundWidgetController> wallpaper_controller_; |
| 303 std::unique_ptr<AnimatingDesktopController> animating_wallpaper_controller_; | 303 std::unique_ptr<AnimatingDesktopController> animating_wallpaper_controller_; |
| 304 std::unique_ptr<::wm::ScopedCaptureClient> capture_client_; | 304 std::unique_ptr<::wm::ScopedCaptureClient> capture_client_; |
| 305 | 305 |
| 306 DISALLOW_COPY_AND_ASSIGN(RootWindowController); | 306 DISALLOW_COPY_AND_ASSIGN(RootWindowController); |
| 307 }; | 307 }; |
| 308 | 308 |
| 309 | 309 // On classic ash, returns the RootWindowController for the given |root_window|. |
| 310 // Gets the RootWindowController for |root_window|. | 310 // On mus ash, returns the RootWindowController for the primary display. |
| 311 // See RootWindowController class comment above. |
| 311 ASH_EXPORT RootWindowController* GetRootWindowController( | 312 ASH_EXPORT RootWindowController* GetRootWindowController( |
| 312 const aura::Window* root_window); | 313 const aura::Window* root_window); |
| 313 | 314 |
| 314 } // namespace ash | 315 } // namespace ash |
| 315 | 316 |
| 316 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 317 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |