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 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 | 9 |
10 typedef unsigned int SkColor; | 10 typedef unsigned int SkColor; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 kTrayRoundedBorderRadius; | 72 extern const int kTrayRoundedBorderRadius; |
73 | 73 |
74 // The width of ToggleButton views including any border padding. | 74 // The width of ToggleButton views including any border padding. |
75 extern const int kTrayToggleButtonWidth; | 75 extern const int kTrayToggleButtonWidth; |
76 | 76 |
77 extern const SkColor kBackgroundColor; | |
78 extern const SkColor kPublicAccountUserCardTextColor; | 77 extern const SkColor kPublicAccountUserCardTextColor; |
79 extern const SkColor kPublicAccountUserCardNameColor; | 78 extern const SkColor kPublicAccountUserCardNameColor; |
80 | 79 |
81 extern const SkColor kHeaderBackgroundColor; | 80 extern const SkColor kHeaderBackgroundColor; |
82 | 81 |
83 extern const SkColor kHeaderTextColorNormal; | 82 extern const SkColor kHeaderTextColorNormal; |
84 extern const SkColor kHeaderTextColorHover; | 83 extern const SkColor kHeaderTextColorHover; |
85 | 84 |
86 extern const int kTrayPopupMinWidth; | 85 extern const int kTrayPopupMinWidth; |
87 extern const int kTrayPopupMaxWidth; | 86 extern const int kTrayPopupMaxWidth; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 extern const int kTrayPopupSystemInfoRowHeight; | 141 extern const int kTrayPopupSystemInfoRowHeight; |
143 | 142 |
144 namespace test { | 143 namespace test { |
145 const int kSettingsTrayItemViewId = 10000; | 144 const int kSettingsTrayItemViewId = 10000; |
146 const int kAccessibilityTrayItemViewId = 10001; | 145 const int kAccessibilityTrayItemViewId = 10001; |
147 } // namespace test | 146 } // namespace test |
148 | 147 |
149 } // namespace ash | 148 } // namespace ash |
150 | 149 |
151 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 150 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
OLD | NEW |