| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 // When transitioning between a detailed and a default view, this delay is used | 61 // When transitioning between a detailed and a default view, this delay is used |
| 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; | |
| 71 extern const SkColor kTrayPopupHoverBackgroundColor; | 70 extern const SkColor kTrayPopupHoverBackgroundColor; |
| 72 extern const int kTrayRoundedBorderRadius; | 71 extern const int kTrayRoundedBorderRadius; |
| 73 | 72 |
| 74 // The width of ToggleButton views including any border padding. | 73 // The width of ToggleButton views including any border padding. |
| 75 extern const int kTrayToggleButtonWidth; | 74 extern const int kTrayToggleButtonWidth; |
| 76 | 75 |
| 77 extern const SkColor kBackgroundColor; | 76 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 |
| (...skipping 61 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 |