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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 extern const SkColor kHeaderTextColorNormal; | 66 extern const SkColor kHeaderTextColorNormal; |
67 extern const SkColor kHeaderTextColorHover; | 67 extern const SkColor kHeaderTextColorHover; |
68 | 68 |
69 extern const int kTrayPopupMinWidth; | 69 extern const int kTrayPopupMinWidth; |
70 extern const int kTrayPopupMaxWidth; | 70 extern const int kTrayPopupMaxWidth; |
71 extern const int kNotificationIconWidth; | 71 extern const int kNotificationIconWidth; |
72 extern const int kNotificationButtonWidth; | 72 extern const int kNotificationButtonWidth; |
73 extern const int kTrayNotificationContentsWidth; | 73 extern const int kTrayNotificationContentsWidth; |
74 | 74 |
75 | |
76 extern const int kTrayAvatarCornerRadius; | 75 extern const int kTrayAvatarCornerRadius; |
77 extern const int kTrayAvatarSize; | 76 extern const int kTrayAvatarSize; |
78 | 77 |
79 extern const int kTraySpacing; | 78 extern const int kTraySpacing; |
80 extern const int kShelfItemHeight; | 79 extern const int kShelfItemHeight; |
81 | 80 |
82 namespace test { | 81 namespace test { |
83 const int kSettingsTrayItemViewId = 10000; | 82 const int kSettingsTrayItemViewId = 10000; |
84 const int kAccessibilityTrayItemViewId = 10001; | 83 const int kAccessibilityTrayItemViewId = 10001; |
85 } // namespace test | 84 } // namespace test |
86 | 85 |
87 } // namespace ash | 86 } // namespace ash |
88 | 87 |
89 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 88 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
OLD | NEW |