| 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 10 matching lines...) Expand all Loading... |
| 21 extern const int kBubblePaddingHorizontalSide; | 21 extern const int kBubblePaddingHorizontalSide; |
| 22 extern const int kBubblePaddingVerticalBottom; | 22 extern const int kBubblePaddingVerticalBottom; |
| 23 extern const int kBubblePaddingVerticalSide; | 23 extern const int kBubblePaddingVerticalSide; |
| 24 | 24 |
| 25 extern const int kTrayBubbleAnchorTopInsetBottomAnchor; | 25 extern const int kTrayBubbleAnchorTopInsetBottomAnchor; |
| 26 | 26 |
| 27 extern const int kTrayImageItemHorizontalPaddingBottomAlignment; | 27 extern const int kTrayImageItemHorizontalPaddingBottomAlignment; |
| 28 extern const int kTrayImageItemHorizontalPaddingVerticalAlignment; | 28 extern const int kTrayImageItemHorizontalPaddingVerticalAlignment; |
| 29 extern const int kTrayImageItemVerticalPaddingVerticalAlignment; | 29 extern const int kTrayImageItemVerticalPaddingVerticalAlignment; |
| 30 | 30 |
| 31 extern const int kTrayImeIconSize; |
| 32 |
| 31 ASH_EXPORT extern const int kTrayItemSize; | 33 ASH_EXPORT extern const int kTrayItemSize; |
| 32 | 34 |
| 33 extern const int kTrayLabelItemHorizontalPaddingBottomAlignment; | 35 extern const int kTrayLabelItemHorizontalPaddingBottomAlignment; |
| 34 extern const int kTrayLabelItemVerticalPaddingVerticalAlignment; | 36 extern const int kTrayLabelItemVerticalPaddingVerticalAlignment; |
| 35 | 37 |
| 36 extern const int kTrayMenuBottomRowPadding; | 38 extern const int kTrayMenuBottomRowPadding; |
| 37 extern const int kTrayMenuBottomRowPaddingBetweenItems; | 39 extern const int kTrayMenuBottomRowPaddingBetweenItems; |
| 38 | 40 |
| 39 extern const int kTrayPopupAutoCloseDelayInSeconds; | 41 extern const int kTrayPopupAutoCloseDelayInSeconds; |
| 40 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; | 42 extern const int kTrayPopupAutoCloseDelayForTextInSeconds; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 int GetTrayConstant(TrayConstant constant); | 106 int GetTrayConstant(TrayConstant constant); |
| 105 | 107 |
| 106 namespace test { | 108 namespace test { |
| 107 const int kSettingsTrayItemViewId = 10000; | 109 const int kSettingsTrayItemViewId = 10000; |
| 108 const int kAccessibilityTrayItemViewId = 10001; | 110 const int kAccessibilityTrayItemViewId = 10001; |
| 109 } // namespace test | 111 } // namespace test |
| 110 | 112 |
| 111 } // namespace ash | 113 } // namespace ash |
| 112 | 114 |
| 113 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 115 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
| OLD | NEW |