| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 // The color of the window header. | 106 // The color of the window header. |
| 107 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor; | 107 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor; |
| 108 | 108 |
| 109 // A property key to store the window icon, typically 16x16 for title bars. | 109 // A property key to store the window icon, typically 16x16 for title bars. |
| 110 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; | 110 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; |
| 111 | 111 |
| 112 AURA_EXPORT extern const aura::WindowProperty<ui::mojom::WindowType>* const | 112 AURA_EXPORT extern const aura::WindowProperty<ui::mojom::WindowType>* const |
| 113 kWindowTypeKey; | 113 kWindowTypeKey; |
| 114 | 114 |
| 115 // A property key to store the id of an accessible child tree hosted by this |
| 116 // window. Type of value is an int. |
| 117 AURA_EXPORT extern const WindowProperty<int32_t>* const |
| 118 kAccessibleChildTreeIdKey; |
| 119 |
| 115 // Alphabetical sort. | 120 // Alphabetical sort. |
| 116 | 121 |
| 117 } // namespace client | 122 } // namespace client |
| 118 } // namespace aura | 123 } // namespace aura |
| 119 | 124 |
| 120 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 125 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| OLD | NEW |