OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_WM_WINDOW_PROPERTY_H_ | 5 #ifndef ASH_COMMON_WM_WINDOW_PROPERTY_H_ |
6 #define ASH_COMMON_WM_WINDOW_PROPERTY_H_ | 6 #define ASH_COMMON_WM_WINDOW_PROPERTY_H_ |
7 | 7 |
8 namespace ash { | 8 namespace ash { |
9 | 9 |
10 enum class WmWindowProperty { | 10 enum class WmWindowProperty { |
| 11 // Not a valid property; used for property key translation purposes. |
| 12 INVALID_PROPERTY, |
| 13 |
11 // Type bool. | 14 // Type bool. |
12 ALWAYS_ON_TOP, | 15 ALWAYS_ON_TOP, |
13 | 16 |
14 // Type bool. See aura::client:kExcludeFromMruKey for details. | 17 // Type bool. See aura::client:kExcludeFromMruKey for details. |
15 EXCLUDE_FROM_MRU, | 18 EXCLUDE_FROM_MRU, |
16 | 19 |
17 // Type int, but cast to ui::ModalType. | 20 // Type int, but cast to ui::ModalType. |
18 MODAL_TYPE, | 21 MODAL_TYPE, |
19 | 22 |
20 // Type int. | 23 // Type int. |
(...skipping 11 matching lines...) Expand all Loading... |
32 // Type SkColor. See aura::client::kTopViewColor for details. | 35 // Type SkColor. See aura::client::kTopViewColor for details. |
33 TOP_VIEW_COLOR, | 36 TOP_VIEW_COLOR, |
34 | 37 |
35 // Type int. See aura::client::kTopViewInset for details. | 38 // Type int. See aura::client::kTopViewInset for details. |
36 TOP_VIEW_INSET, | 39 TOP_VIEW_INSET, |
37 }; | 40 }; |
38 | 41 |
39 } // namespace ash | 42 } // namespace ash |
40 | 43 |
41 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_ | 44 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_ |
OLD | NEW |