| 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 "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/system/user/login_status.h" | 9 #include "ash/system/user/login_status.h" |
| 10 #include "ash/wm/shelf_types.h" | 10 #include "ash/wm/shelf_types.h" |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 | 13 |
| 14 class SkBitmap; | 14 class SkBitmap; |
| 15 | 15 |
| 16 namespace aura { |
| 17 class EventFilter; |
| 18 class RootWindow; |
| 19 class Window; |
| 20 } |
| 21 |
| 16 namespace gfx { | 22 namespace gfx { |
| 17 class Point; | 23 class Point; |
| 18 } | 24 } |
| 19 | 25 |
| 20 namespace aura { | 26 namespace views { |
| 21 class EventFilter; | 27 namespace corewm { |
| 22 class RootWindow; | |
| 23 class Window; | |
| 24 namespace shared { | |
| 25 class InputMethodEventFilter; | 28 class InputMethodEventFilter; |
| 26 class RootWindowEventFilter; | 29 class RootWindowEventFilter; |
| 27 } // namespace shared | 30 } |
| 28 } // namespace aura | 31 } |
| 29 | 32 |
| 30 namespace ash { | 33 namespace ash { |
| 31 class Launcher; | 34 class Launcher; |
| 32 class ToplevelWindowEventHandler; | 35 class ToplevelWindowEventHandler; |
| 33 | 36 |
| 34 namespace internal { | 37 namespace internal { |
| 35 | 38 |
| 36 class BootSplashScreen; | 39 class BootSplashScreen; |
| 37 class PanelLayoutManager; | 40 class PanelLayoutManager; |
| 38 class RootWindowLayoutManager; | 41 class RootWindowLayoutManager; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 scoped_ptr<ToplevelWindowEventHandler> modal_container_handler_; | 189 scoped_ptr<ToplevelWindowEventHandler> modal_container_handler_; |
| 187 scoped_ptr<ToplevelWindowEventHandler> lock_modal_container_handler_; | 190 scoped_ptr<ToplevelWindowEventHandler> lock_modal_container_handler_; |
| 188 | 191 |
| 189 DISALLOW_COPY_AND_ASSIGN(RootWindowController); | 192 DISALLOW_COPY_AND_ASSIGN(RootWindowController); |
| 190 }; | 193 }; |
| 191 | 194 |
| 192 } // namespace internal | 195 } // namespace internal |
| 193 } // ash | 196 } // ash |
| 194 | 197 |
| 195 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 198 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |