| 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_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 | 9 |
| 10 typedef unsigned int SkColor; | 10 typedef unsigned int SkColor; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // before the transition starts. | 62 // before the transition starts. |
| 63 ASH_EXPORT extern const int kTrayDetailedViewTransitionDelayMs; | 63 ASH_EXPORT extern const int kTrayDetailedViewTransitionDelayMs; |
| 64 | 64 |
| 65 // Padding used on right side of labels to keep minimum distance to the next | 65 // Padding used on right side of labels to keep minimum distance to the next |
| 66 // item. This applies to all labels in the system menu. | 66 // item. This applies to all labels in the system menu. |
| 67 extern const int kTrayPopupLabelRightPadding; | 67 extern const int kTrayPopupLabelRightPadding; |
| 68 | 68 |
| 69 extern const int kTrayPopupDetailsIconWidth; | 69 extern const int kTrayPopupDetailsIconWidth; |
| 70 extern const int kTrayPopupDetailsLabelExtraLeftMargin; | 70 extern const int kTrayPopupDetailsLabelExtraLeftMargin; |
| 71 extern const SkColor kTrayPopupHoverBackgroundColor; | 71 extern const SkColor kTrayPopupHoverBackgroundColor; |
| 72 extern const int kTrayPopupScrollSeparatorHeight; | |
| 73 extern const int kTrayRoundedBorderRadius; | 72 extern const int kTrayRoundedBorderRadius; |
| 74 | 73 |
| 75 // The width of ToggleButton views including any border padding. | 74 // The width of ToggleButton views including any border padding. |
| 76 extern const int kTrayToggleButtonWidth; | 75 extern const int kTrayToggleButtonWidth; |
| 77 | 76 |
| 78 extern const SkColor kBackgroundColor; | 77 extern const SkColor kBackgroundColor; |
| 79 extern const SkColor kPublicAccountUserCardTextColor; | 78 extern const SkColor kPublicAccountUserCardTextColor; |
| 80 extern const SkColor kPublicAccountUserCardNameColor; | 79 extern const SkColor kPublicAccountUserCardNameColor; |
| 81 | 80 |
| 82 extern const SkColor kHeaderBackgroundColor; | 81 extern const SkColor kHeaderBackgroundColor; |
| 83 | 82 |
| 84 extern const SkColor kBorderDarkColor; | |
| 85 extern const SkColor kBorderLightColor; | |
| 86 extern const SkColor kButtonStrokeColor; | |
| 87 | |
| 88 extern const SkColor kHeaderTextColorNormal; | 83 extern const SkColor kHeaderTextColorNormal; |
| 89 extern const SkColor kHeaderTextColorHover; | 84 extern const SkColor kHeaderTextColorHover; |
| 90 | 85 |
| 91 extern const int kTrayPopupMinWidth; | 86 extern const int kTrayPopupMinWidth; |
| 92 extern const int kTrayPopupMaxWidth; | 87 extern const int kTrayPopupMaxWidth; |
| 93 extern const int kNotificationIconWidth; | 88 extern const int kNotificationIconWidth; |
| 94 extern const int kNotificationButtonWidth; | 89 extern const int kNotificationButtonWidth; |
| 95 extern const int kTrayNotificationContentsWidth; | 90 extern const int kTrayNotificationContentsWidth; |
| 96 | 91 |
| 97 // Extra padding used to adjust hitting region around tray items. | 92 // Extra padding used to adjust hitting region around tray items. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 extern const int kTrayPopupSystemInfoRowHeight; | 142 extern const int kTrayPopupSystemInfoRowHeight; |
| 148 | 143 |
| 149 namespace test { | 144 namespace test { |
| 150 const int kSettingsTrayItemViewId = 10000; | 145 const int kSettingsTrayItemViewId = 10000; |
| 151 const int kAccessibilityTrayItemViewId = 10001; | 146 const int kAccessibilityTrayItemViewId = 10001; |
| 152 } // namespace test | 147 } // namespace test |
| 153 | 148 |
| 154 } // namespace ash | 149 } // namespace ash |
| 155 | 150 |
| 156 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 151 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| OLD | NEW |