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 #pragma once | 7 #pragma once |
8 | 8 |
9 typedef unsigned int SkColor; | 9 typedef unsigned int SkColor; |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 extern const SkColor kBackgroundColor; | 22 extern const SkColor kBackgroundColor; |
23 extern const SkColor kHoverBackgroundColor; | 23 extern const SkColor kHoverBackgroundColor; |
24 | 24 |
25 extern const SkColor kHeaderBackgroundColor; | 25 extern const SkColor kHeaderBackgroundColor; |
26 extern const SkColor kHeaderHoverBackgroundColor; | 26 extern const SkColor kHeaderHoverBackgroundColor; |
27 | 27 |
28 extern const SkColor kBorderDarkColor; | 28 extern const SkColor kBorderDarkColor; |
29 extern const SkColor kBorderLightColor; | 29 extern const SkColor kBorderLightColor; |
30 | 30 |
| 31 extern const SkColor kFocusBorderColor; |
| 32 |
31 extern const int kTrayPopupWidth; | 33 extern const int kTrayPopupWidth; |
32 | 34 |
33 } // namespace ash | 35 } // namespace ash |
34 | 36 |
35 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ | 37 #endif // ASH_SYSTEM_TRAY_TRAY_CONSTANTS_H_ |
OLD | NEW |