| 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 18 matching lines...) Expand all Loading... |
| 29 extern const int kTrayPopupTextSpacingVertical; | 29 extern const int kTrayPopupTextSpacingVertical; |
| 30 | 30 |
| 31 extern const int kTrayPopupItemHeight; | 31 extern const int kTrayPopupItemHeight; |
| 32 extern const int kTrayPopupDetailsIconWidth; | 32 extern const int kTrayPopupDetailsIconWidth; |
| 33 extern const int kTrayRoundedBorderRadius; | 33 extern const int kTrayRoundedBorderRadius; |
| 34 extern const int kTrayBarButtonWidth; | 34 extern const int kTrayBarButtonWidth; |
| 35 | 35 |
| 36 extern const SkColor kBackgroundColor; | 36 extern const SkColor kBackgroundColor; |
| 37 extern const SkColor kHoverBackgroundColor; | 37 extern const SkColor kHoverBackgroundColor; |
| 38 extern const SkColor kPublicAccountBackgroundColor; | 38 extern const SkColor kPublicAccountBackgroundColor; |
| 39 extern const SkColor kPublicAccountUserCardTextColor; |
| 39 | 40 |
| 40 extern const SkColor kHeaderBackgroundColorLight; | 41 extern const SkColor kHeaderBackgroundColorLight; |
| 41 extern const SkColor kHeaderBackgroundColorDark; | 42 extern const SkColor kHeaderBackgroundColorDark; |
| 42 | 43 |
| 43 extern const SkColor kBorderDarkColor; | 44 extern const SkColor kBorderDarkColor; |
| 44 extern const SkColor kBorderLightColor; | 45 extern const SkColor kBorderLightColor; |
| 45 extern const SkColor kButtonStrokeColor; | 46 extern const SkColor kButtonStrokeColor; |
| 46 | 47 |
| 47 extern const SkColor kHeaderTextColorNormal; | 48 extern const SkColor kHeaderTextColorNormal; |
| 48 extern const SkColor kHeaderTextColorHover; | 49 extern const SkColor kHeaderTextColorHover; |
| 49 | 50 |
| 50 extern const int kTrayPopupWidth; | 51 extern const int kTrayPopupWidth; |
| 51 extern const int kNotificationIconWidth; | 52 extern const int kNotificationIconWidth; |
| 52 extern const int kTrayNotificationContentsWidth; | 53 extern const int kTrayNotificationContentsWidth; |
| 53 | 54 |
| 54 } // namespace ash | 55 } // namespace ash |
| 55 | 56 |
| 56 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 57 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| OLD | NEW |