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_WM_ROOT_WINDOW_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_ROOT_WINDOW_LAYOUT_MANAGER_H_ |
6 #define ASH_WM_ROOT_WINDOW_LAYOUT_MANAGER_H_ | 6 #define ASH_WM_ROOT_WINDOW_LAYOUT_MANAGER_H_ |
7 | 7 |
8 #include "ash/shell_window_ids.h" | 8 #include "ash/shell_window_ids.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "ui/aura/layout_manager.h" | 11 #include "ui/aura/layout_manager.h" |
13 | 12 |
14 namespace aura { | 13 namespace aura { |
15 class Window; | 14 class Window; |
16 } | 15 } |
17 namespace gfx { | 16 namespace gfx { |
18 class Rect; | 17 class Rect; |
19 } | 18 } |
20 namespace ui { | 19 namespace ui { |
21 class Layer; | 20 class Layer; |
(...skipping 23 matching lines...) Expand all Loading... |
45 | 44 |
46 private: | 45 private: |
47 aura::Window* owner_; | 46 aura::Window* owner_; |
48 | 47 |
49 DISALLOW_COPY_AND_ASSIGN(RootWindowLayoutManager); | 48 DISALLOW_COPY_AND_ASSIGN(RootWindowLayoutManager); |
50 }; | 49 }; |
51 | 50 |
52 } // namespace ash | 51 } // namespace ash |
53 | 52 |
54 #endif // ASH_WM_ROOT_WINDOW_LAYOUT_MANAGER_H_ | 53 #endif // ASH_WM_ROOT_WINDOW_LAYOUT_MANAGER_H_ |
OLD | NEW |