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 #include "ash/system/tray/tray_constants.h" | 5 #include "ash/system/tray/tray_constants.h" |
6 | 6 |
7 #include "third_party/skia/include/core/SkColor.h" | 7 #include "third_party/skia/include/core/SkColor.h" |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 | 10 |
11 const int kTrayPaddingBetweenItems = 8; | 11 const int kTrayPaddingBetweenItems = 8; |
12 const int kTrayPopupAutoCloseDelayInSeconds = 2; | 12 const int kTrayPopupAutoCloseDelayInSeconds = 2; |
13 extern const int kTrayPopupPaddingHorizontal = 18; | 13 const int kTrayPopupPaddingHorizontal = 18; |
14 const int kTrayPopupPaddingBetweenItems = 5; | 14 const int kTrayPopupPaddingBetweenItems = 5; |
15 | 15 |
| 16 const int kTrayPopupDetailsIconWidth = 27; |
| 17 |
16 const SkColor kBackgroundColor = SK_ColorWHITE; | 18 const SkColor kBackgroundColor = SK_ColorWHITE; |
17 const SkColor kHoverBackgroundColor = SkColorSetRGB(0xfb, 0xfc, 0xfb); | 19 const SkColor kHoverBackgroundColor = SkColorSetRGB(0xfb, 0xfc, 0xfb); |
18 | 20 |
19 const int kTrayPopupWidth = 300; | 21 const int kTrayPopupWidth = 300; |
20 | 22 |
21 } // namespace ash | 23 } // namespace ash |
OLD | NEW |