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 ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 5 #ifndef ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
6 #define ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 6 #define ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
7 | 7 |
8 typedef unsigned int SkColor; | 8 typedef unsigned int SkColor; |
9 | 9 |
10 namespace ash { | 10 namespace ash { |
(...skipping 21 matching lines...) Expand all Loading... |
32 extern const int kTrayPopupTextSpacingVertical; | 32 extern const int kTrayPopupTextSpacingVertical; |
33 | 33 |
34 extern const int kTrayPopupItemHeight; | 34 extern const int kTrayPopupItemHeight; |
35 extern const int kTrayPopupDetailsIconWidth; | 35 extern const int kTrayPopupDetailsIconWidth; |
36 extern const int kTrayRoundedBorderRadius; | 36 extern const int kTrayRoundedBorderRadius; |
37 extern const int kTrayBarButtonWidth; | 37 extern const int kTrayBarButtonWidth; |
38 | 38 |
39 extern const SkColor kBackgroundColor; | 39 extern const SkColor kBackgroundColor; |
40 extern const SkColor kHoverBackgroundColor; | 40 extern const SkColor kHoverBackgroundColor; |
41 extern const SkColor kPublicAccountBackgroundColor; | 41 extern const SkColor kPublicAccountBackgroundColor; |
| 42 extern const SkColor kPublicAccountUserCardTextColor; |
| 43 extern const SkColor kPublicAccountUserCardNameColor; |
42 | 44 |
43 extern const SkColor kHeaderBackgroundColorLight; | 45 extern const SkColor kHeaderBackgroundColorLight; |
44 extern const SkColor kHeaderBackgroundColorDark; | 46 extern const SkColor kHeaderBackgroundColorDark; |
45 | 47 |
46 extern const SkColor kBorderDarkColor; | 48 extern const SkColor kBorderDarkColor; |
47 extern const SkColor kBorderLightColor; | 49 extern const SkColor kBorderLightColor; |
48 extern const SkColor kButtonStrokeColor; | 50 extern const SkColor kButtonStrokeColor; |
49 | 51 |
50 extern const SkColor kHeaderTextColorNormal; | 52 extern const SkColor kHeaderTextColorNormal; |
51 extern const SkColor kHeaderTextColorHover; | 53 extern const SkColor kHeaderTextColorHover; |
52 | 54 |
53 extern const int kTrayPopupWidth; | 55 extern const int kTrayPopupMinWidth; |
| 56 extern const int kTrayPopupMaxWidth; |
54 extern const int kNotificationIconWidth; | 57 extern const int kNotificationIconWidth; |
55 extern const int kTrayNotificationContentsWidth; | 58 extern const int kTrayNotificationContentsWidth; |
56 | 59 |
57 } // namespace ash | 60 } // namespace ash |
58 | 61 |
59 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 62 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
OLD | NEW |