| 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_WINDOW_PROPERTIES_H_ | 5 #ifndef ASH_WM_WINDOW_PROPERTIES_H_ |
| 6 #define ASH_WM_WINDOW_PROPERTIES_H_ | 6 #define ASH_WM_WINDOW_PROPERTIES_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/shelf/shelf_item_types.h" | 9 #include "ash/common/shelf/shelf_item_types.h" |
| 10 #include "ui/base/ui_base_types.h" | 10 #include "ui/base/ui_base_types.h" |
| 11 #include "ui/gfx/geometry/rect.h" | 11 #include "ui/gfx/geometry/rect.h" |
| 12 | 12 |
| 13 namespace aura { | 13 namespace aura { |
| 14 class Window; | |
| 15 | |
| 16 template <typename T> | 14 template <typename T> |
| 17 struct WindowProperty; | 15 struct WindowProperty; |
| 18 } | 16 } |
| 19 | 17 |
| 20 namespace ash { | 18 namespace ash { |
| 21 namespace wm { | 19 namespace wm { |
| 22 class WindowState; | 20 class WindowState; |
| 23 } // namespace wm | 21 } // namespace wm |
| 24 | 22 |
| 25 // Shell-specific window property keys. | 23 // Shell-specific window property keys. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 56 |
| 59 // A property key to store WindowState in the window. The window state | 57 // A property key to store WindowState in the window. The window state |
| 60 // is owned by the window. | 58 // is owned by the window. |
| 61 extern const aura::WindowProperty<wm::WindowState*>* const kWindowStateKey; | 59 extern const aura::WindowProperty<wm::WindowState*>* const kWindowStateKey; |
| 62 | 60 |
| 63 // Alphabetical sort. | 61 // Alphabetical sort. |
| 64 | 62 |
| 65 } // namespace ash | 63 } // namespace ash |
| 66 | 64 |
| 67 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 65 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |