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 UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
(...skipping 18 matching lines...) Expand all Loading... | |
29 TOP_LEVEL_IN_WM, | 29 TOP_LEVEL_IN_WM, |
30 }; | 30 }; |
31 | 31 |
32 // Alphabetical sort. | 32 // Alphabetical sort. |
33 | 33 |
34 // A property key to store whether accessibility focus falls back to widget or | 34 // A property key to store whether accessibility focus falls back to widget or |
35 // not. | 35 // not. |
36 AURA_EXPORT extern const WindowProperty<bool>* const | 36 AURA_EXPORT extern const WindowProperty<bool>* const |
37 kAccessibilityFocusFallsbackToWidgetKey; | 37 kAccessibilityFocusFallsbackToWidgetKey; |
38 | 38 |
39 // A property key to store whether activation on pointer event is enabled or | |
40 // not. | |
sky
2017/04/17 16:08:48
Document that default is true, which means windows
Qiang(Joe) Xu
2017/04/17 17:40:32
Done.
| |
41 AURA_EXPORT extern const WindowProperty<bool>* const kActivateOnPointerKey; | |
42 | |
39 // A property key to store always-on-top flag. | 43 // A property key to store always-on-top flag. |
40 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey; | 44 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey; |
41 | 45 |
42 // A property key to store whether animations are disabled for the window. Type | 46 // A property key to store whether animations are disabled for the window. Type |
43 // of value is an int. | 47 // of value is an int. |
44 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey; | 48 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey; |
45 | 49 |
46 // A property key to store the app icon, typically larger for shelf icons, etc. | 50 // A property key to store the app icon, typically larger for shelf icons, etc. |
47 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kAppIconKey; | 51 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kAppIconKey; |
48 | 52 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
133 | 137 |
134 AURA_EXPORT extern const WindowProperty<ui::mojom::WindowType>* const | 138 AURA_EXPORT extern const WindowProperty<ui::mojom::WindowType>* const |
135 kWindowTypeKey; | 139 kWindowTypeKey; |
136 | 140 |
137 // Alphabetical sort. | 141 // Alphabetical sort. |
138 | 142 |
139 } // namespace client | 143 } // namespace client |
140 } // namespace aura | 144 } // namespace aura |
141 | 145 |
142 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 146 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
OLD | NEW |