| 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 15 matching lines...) Expand all Loading... |
| 26 extern const int kTrayMenuBottomRowPaddingBetweenItems; | 26 extern const int kTrayMenuBottomRowPaddingBetweenItems; |
| 27 | 27 |
| 28 extern const int kTrayPopupAutoCloseDelayInSeconds; | 28 extern const int kTrayPopupAutoCloseDelayInSeconds; |
| 29 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; | 29 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; |
| 30 extern const int kTrayPopupPaddingHorizontal; | 30 extern const int kTrayPopupPaddingHorizontal; |
| 31 extern const int kTrayPopupPaddingBetweenItems; | 31 extern const int kTrayPopupPaddingBetweenItems; |
| 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 kTrayPopupScrollSeparatorHeight; |
| 36 extern const int kTrayRoundedBorderRadius; | 37 extern const int kTrayRoundedBorderRadius; |
| 37 extern const int kTrayBarButtonWidth; | 38 extern const int kTrayBarButtonWidth; |
| 38 | 39 |
| 39 extern const SkColor kBackgroundColor; | 40 extern const SkColor kBackgroundColor; |
| 40 extern const SkColor kHoverBackgroundColor; | 41 extern const SkColor kHoverBackgroundColor; |
| 41 extern const SkColor kPublicAccountBackgroundColor; | 42 extern const SkColor kPublicAccountBackgroundColor; |
| 42 extern const SkColor kPublicAccountUserCardTextColor; | 43 extern const SkColor kPublicAccountUserCardTextColor; |
| 43 extern const SkColor kPublicAccountUserCardNameColor; | 44 extern const SkColor kPublicAccountUserCardNameColor; |
| 44 | 45 |
| 45 extern const SkColor kHeaderBackgroundColorLight; | 46 extern const SkColor kHeaderBackgroundColorLight; |
| 46 extern const SkColor kHeaderBackgroundColorDark; | 47 extern const SkColor kHeaderBackgroundColorDark; |
| 47 | 48 |
| 48 extern const SkColor kBorderDarkColor; | 49 extern const SkColor kBorderDarkColor; |
| 49 extern const SkColor kBorderLightColor; | 50 extern const SkColor kBorderLightColor; |
| 50 extern const SkColor kButtonStrokeColor; | 51 extern const SkColor kButtonStrokeColor; |
| 51 | 52 |
| 52 extern const SkColor kHeaderTextColorNormal; | 53 extern const SkColor kHeaderTextColorNormal; |
| 53 extern const SkColor kHeaderTextColorHover; | 54 extern const SkColor kHeaderTextColorHover; |
| 54 | 55 |
| 55 extern const int kTrayPopupMinWidth; | 56 extern const int kTrayPopupMinWidth; |
| 56 extern const int kTrayPopupMaxWidth; | 57 extern const int kTrayPopupMaxWidth; |
| 57 extern const int kNotificationIconWidth; | 58 extern const int kNotificationIconWidth; |
| 58 extern const int kTrayNotificationContentsWidth; | 59 extern const int kTrayNotificationContentsWidth; |
| 59 | 60 |
| 60 } // namespace ash | 61 } // namespace ash |
| 61 | 62 |
| 62 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 63 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| OLD | NEW |