| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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; | 72 extern const int kTrayPopupScrollSeparatorHeight; |
| 73 extern const int kTrayRoundedBorderRadius; | 73 extern const int kTrayRoundedBorderRadius; |
| 74 | 74 |
| 75 // The width of ToggleButton views including any border padding. | 75 // The width of ToggleButton views including any border padding. |
| 76 extern const int kTrayToggleButtonWidth; | 76 extern const int kTrayToggleButtonWidth; |
| 77 | 77 |
| 78 extern const SkColor kBackgroundColor; | 78 extern const SkColor kBackgroundColor; |
| 79 extern const SkColor kHoverBackgroundColor; | |
| 80 extern const SkColor kPublicAccountUserCardTextColor; | 79 extern const SkColor kPublicAccountUserCardTextColor; |
| 81 extern const SkColor kPublicAccountUserCardNameColor; | 80 extern const SkColor kPublicAccountUserCardNameColor; |
| 82 | 81 |
| 83 extern const SkColor kHeaderBackgroundColor; | 82 extern const SkColor kHeaderBackgroundColor; |
| 84 | 83 |
| 85 extern const SkColor kBorderDarkColor; | 84 extern const SkColor kBorderDarkColor; |
| 86 extern const SkColor kBorderLightColor; | 85 extern const SkColor kBorderLightColor; |
| 87 extern const SkColor kButtonStrokeColor; | 86 extern const SkColor kButtonStrokeColor; |
| 88 | 87 |
| 89 extern const SkColor kHeaderTextColorNormal; | 88 extern const SkColor kHeaderTextColorNormal; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 extern const int kTrayPopupSystemInfoRowHeight; | 147 extern const int kTrayPopupSystemInfoRowHeight; |
| 149 | 148 |
| 150 namespace test { | 149 namespace test { |
| 151 const int kSettingsTrayItemViewId = 10000; | 150 const int kSettingsTrayItemViewId = 10000; |
| 152 const int kAccessibilityTrayItemViewId = 10001; | 151 const int kAccessibilityTrayItemViewId = 10001; |
| 153 } // namespace test | 152 } // namespace test |
| 154 | 153 |
| 155 } // namespace ash | 154 } // namespace ash |
| 156 | 155 |
| 157 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 156 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| OLD | NEW |