| 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 "third_party/skia/include/core/SkColor.h" | 10 #include "third_party/skia/include/core/SkColor.h" |
| 11 #include "ui/aura/aura_export.h" | 11 #include "ui/aura/aura_export.h" |
| 12 #include "ui/aura/window.h" | 12 #include "ui/aura/window.h" |
| 13 #include "ui/base/ui_base_types.h" | 13 #include "ui/base/ui_base_types.h" |
| 14 | 14 |
| 15 namespace ui { | 15 namespace ui { |
| 16 class InputMethod; | 16 class InputMethod; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace aura { | 19 namespace aura { |
| 20 namespace client { | 20 namespace client { |
| 21 | 21 |
| 22 // Alphabetical sort. | 22 // Alphabetical sort. |
| 23 | 23 |
| 24 // A property key to store whether accessibility focus falls back to widget or |
| 25 // not. |
| 26 AURA_EXPORT extern const WindowProperty<bool>* const |
| 27 kAccessibilityFocusFallsbackToWidgetKey; |
| 28 |
| 24 // A property key to store always-on-top flag. | 29 // A property key to store always-on-top flag. |
| 25 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey; | 30 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey; |
| 26 | 31 |
| 27 // A property key to store whether animations are disabled for the window. Type | 32 // A property key to store whether animations are disabled for the window. Type |
| 28 // of value is an int. | 33 // of value is an int. |
| 29 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey; | 34 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey; |
| 30 | 35 |
| 31 // A property key to store the app icon, typically larger for shelf icons, etc. | 36 // A property key to store the app icon, typically larger for shelf icons, etc. |
| 32 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kAppIconKey; | 37 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kAppIconKey; |
| 33 | 38 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 98 |
| 94 // A property key to store the window icon, typically 16x16 for title bars. | 99 // A property key to store the window icon, typically 16x16 for title bars. |
| 95 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; | 100 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; |
| 96 | 101 |
| 97 // Alphabetical sort. | 102 // Alphabetical sort. |
| 98 | 103 |
| 99 } // namespace client | 104 } // namespace client |
| 100 } // namespace aura | 105 } // namespace aura |
| 101 | 106 |
| 102 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 107 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| OLD | NEW |