| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "ui/aura/aura_export.h" | 9 #include "ui/aura/aura_export.h" |
| 10 | 10 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 AURA_EXPORT extern const char kRootWindowTooltipClientKey[]; | 51 AURA_EXPORT extern const char kRootWindowTooltipClientKey[]; |
| 52 | 52 |
| 53 // A property key to store ui::WindowShowState for a window. | 53 // A property key to store ui::WindowShowState for a window. |
| 54 // See ui/base/ui_base_types.h for its definition. | 54 // See ui/base/ui_base_types.h for its definition. |
| 55 AURA_EXPORT extern const char kShowStateKey[]; | 55 AURA_EXPORT extern const char kShowStateKey[]; |
| 56 | 56 |
| 57 // A property key to store tooltip text for a window. The type of the value | 57 // A property key to store tooltip text for a window. The type of the value |
| 58 // is |string16*|. | 58 // is |string16*|. |
| 59 AURA_EXPORT extern const char kTooltipTextKey[]; | 59 AURA_EXPORT extern const char kTooltipTextKey[]; |
| 60 | 60 |
| 61 // A property set to store the boolean property if the window is a panel. |
| 62 AURA_EXPORT extern const char kPanelKey[]; |
| 63 |
| 61 // Alphabetical sort. | 64 // Alphabetical sort. |
| 62 | 65 |
| 63 } // namespace aura | 66 } // namespace aura |
| 64 | 67 |
| 65 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 68 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| OLD | NEW |