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 26 matching lines...) Expand all Loading... |
37 extern const int kTrayMenuBottomRowPadding; | 37 extern const int kTrayMenuBottomRowPadding; |
38 extern const int kTrayMenuBottomRowPaddingBetweenItems; | 38 extern const int kTrayMenuBottomRowPaddingBetweenItems; |
39 | 39 |
40 extern const int kTrayPopupAutoCloseDelayInSeconds; | 40 extern const int kTrayPopupAutoCloseDelayInSeconds; |
41 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; | 41 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; |
42 extern const int kTrayPopupPaddingHorizontal; | 42 extern const int kTrayPopupPaddingHorizontal; |
43 extern const int kTrayPopupPaddingBetweenItems; | 43 extern const int kTrayPopupPaddingBetweenItems; |
44 extern const int kTrayPopupTextSpacingVertical; | 44 extern const int kTrayPopupTextSpacingVertical; |
45 extern const int kTrayPopupUserCardVerticalPadding; | 45 extern const int kTrayPopupUserCardVerticalPadding; |
46 | 46 |
47 const int kTrayPopupItemHeight = 48; | 47 const int kTrayPopupItemHeight = 46; |
48 extern const int kTrayPopupDetailsIconWidth; | 48 extern const int kTrayPopupDetailsIconWidth; |
49 extern const int kTrayPopupDetailsLabelExtraLeftMargin; | 49 extern const int kTrayPopupDetailsLabelExtraLeftMargin; |
| 50 extern const SkColor kTrayPopupHoverBackgroundColor; |
50 extern const int kTrayPopupScrollSeparatorHeight; | 51 extern const int kTrayPopupScrollSeparatorHeight; |
51 extern const int kTrayRoundedBorderRadius; | 52 extern const int kTrayRoundedBorderRadius; |
52 extern const int kTrayBarButtonWidth; | 53 extern const int kTrayBarButtonWidth; |
53 | 54 |
54 extern const SkColor kBackgroundColor; | 55 extern const SkColor kBackgroundColor; |
55 extern const SkColor kHoverBackgroundColor; | 56 extern const SkColor kHoverBackgroundColor; |
56 extern const SkColor kPublicAccountBackgroundColor; | 57 extern const SkColor kPublicAccountBackgroundColor; |
57 extern const SkColor kPublicAccountUserCardTextColor; | 58 extern const SkColor kPublicAccountUserCardTextColor; |
58 extern const SkColor kPublicAccountUserCardNameColor; | 59 extern const SkColor kPublicAccountUserCardNameColor; |
59 | 60 |
(...skipping 19 matching lines...) Expand all Loading... |
79 extern const int kShelfItemHeight; | 80 extern const int kShelfItemHeight; |
80 | 81 |
81 namespace test { | 82 namespace test { |
82 const int kSettingsTrayItemViewId = 10000; | 83 const int kSettingsTrayItemViewId = 10000; |
83 const int kAccessibilityTrayItemViewId = 10001; | 84 const int kAccessibilityTrayItemViewId = 10001; |
84 } // namespace test | 85 } // namespace test |
85 | 86 |
86 } // namespace ash | 87 } // namespace ash |
87 | 88 |
88 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 89 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
OLD | NEW |