| 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 typedef unsigned int SkColor; | 8 typedef unsigned int SkColor; |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| 11 | 11 |
| 12 extern const int kPaddingFromRightEdgeOfScreenBottomAlignment; | 12 extern const int kPaddingFromRightEdgeOfScreenBottomAlignment; |
| 13 extern const int kPaddingFromBottomOfScreenBottomAlignment; | 13 extern const int kPaddingFromBottomOfScreenBottomAlignment; |
| 14 extern const int kPaddingFromOuterEdgeOfLauncherVerticalAlignment; | 14 extern const int kPaddingFromOuterEdgeOfLauncherVerticalAlignment; |
| 15 extern const int kPaddingFromInnerEdgeOfLauncherVerticalAlignment; | 15 extern const int kPaddingFromInnerEdgeOfLauncherVerticalAlignment; |
| 16 extern const int kPaddingFromBottomOfScreenVerticalAlignment; | 16 extern const int kPaddingFromBottomOfScreenVerticalAlignment; |
| 17 | 17 |
| 18 extern const int kTrayImageItemHorizontalPaddingBottomAlignment; | 18 extern const int kTrayImageItemHorizontalPaddingBottomAlignment; |
| 19 extern const int kTrayImageItemHorizontalPaddingVerticalAlignment; | 19 extern const int kTrayImageItemHorizontalPaddingVerticalAlignment; |
| 20 extern const int kTrayImageItemVerticalPaddingVerticalAlignment; | 20 extern const int kTrayImageItemVerticalPaddingVerticalAlignment; |
| 21 | 21 |
| 22 extern const int kTrayLabelItemHorizontalPaddingBottomAlignment; | 22 extern const int kTrayLabelItemHorizontalPaddingBottomAlignment; |
| 23 extern const int kTrayLabelItemVerticalPaddingVeriticalAlignment; | 23 extern const int kTrayLabelItemVerticalPaddingVeriticalAlignment; |
| 24 | 24 |
| 25 extern const int kTrayMenuBottomRowPadding; |
| 26 extern const int kTrayMenuBottomRowPaddingBetweenItems; |
| 27 |
| 25 extern const int kTrayPopupAutoCloseDelayInSeconds; | 28 extern const int kTrayPopupAutoCloseDelayInSeconds; |
| 26 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; | 29 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; |
| 27 extern const int kTrayPopupPaddingHorizontal; | 30 extern const int kTrayPopupPaddingHorizontal; |
| 28 extern const int kTrayPopupPaddingBetweenItems; | 31 extern const int kTrayPopupPaddingBetweenItems; |
| 29 extern const int kTrayPopupTextSpacingVertical; | 32 extern const int kTrayPopupTextSpacingVertical; |
| 30 | 33 |
| 31 extern const int kTrayPopupItemHeight; | 34 extern const int kTrayPopupItemHeight; |
| 32 extern const int kTrayPopupDetailsIconWidth; | 35 extern const int kTrayPopupDetailsIconWidth; |
| 33 extern const int kTrayRoundedBorderRadius; | 36 extern const int kTrayRoundedBorderRadius; |
| 34 extern const int kTrayBarButtonWidth; | 37 extern const int kTrayBarButtonWidth; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 47 extern const SkColor kHeaderTextColorNormal; | 50 extern const SkColor kHeaderTextColorNormal; |
| 48 extern const SkColor kHeaderTextColorHover; | 51 extern const SkColor kHeaderTextColorHover; |
| 49 | 52 |
| 50 extern const int kTrayPopupWidth; | 53 extern const int kTrayPopupWidth; |
| 51 extern const int kNotificationIconWidth; | 54 extern const int kNotificationIconWidth; |
| 52 extern const int kTrayNotificationContentsWidth; | 55 extern const int kTrayNotificationContentsWidth; |
| 53 | 56 |
| 54 } // namespace ash | 57 } // namespace ash |
| 55 | 58 |
| 56 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 59 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| OLD | NEW |