| 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 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 scoped_ptr<ToplevelWindowEventHandler> panel_container_handler_; | 280 scoped_ptr<ToplevelWindowEventHandler> panel_container_handler_; |
| 281 scoped_ptr<ToplevelWindowEventHandler> docked_container_handler_; | 281 scoped_ptr<ToplevelWindowEventHandler> docked_container_handler_; |
| 282 | 282 |
| 283 scoped_ptr<DesktopBackgroundWidgetController> wallpaper_controller_; | 283 scoped_ptr<DesktopBackgroundWidgetController> wallpaper_controller_; |
| 284 scoped_ptr<AnimatingDesktopController> animating_wallpaper_controller_; | 284 scoped_ptr<AnimatingDesktopController> animating_wallpaper_controller_; |
| 285 scoped_ptr<views::corewm::ScopedCaptureClient> capture_client_; | 285 scoped_ptr<views::corewm::ScopedCaptureClient> capture_client_; |
| 286 | 286 |
| 287 DISALLOW_COPY_AND_ASSIGN(RootWindowController); | 287 DISALLOW_COPY_AND_ASSIGN(RootWindowController); |
| 288 }; | 288 }; |
| 289 | 289 |
| 290 |
| 291 // Gets the RootWindowController for |root_window|. |
| 292 ASH_EXPORT RootWindowController* GetRootWindowController( |
| 293 const aura::RootWindow* root_window); |
| 294 |
| 290 } // namespace internal | 295 } // namespace internal |
| 291 } // ash | 296 } // ash |
| 292 | 297 |
| 293 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 298 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |