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_UTILS_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ |
tdanderson
2017/04/06 17:52:09
Ah, I didn't realize this file only had one thing
| |
6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ |
7 | 7 |
8 namespace views { | 8 namespace views { |
9 class Label; | 9 class Label; |
10 } | 10 } |
11 | 11 |
12 namespace ash { | 12 namespace ash { |
13 class HoverHighlightView; | |
13 | 14 |
14 // Sets up a Label properly for the tray (sets color, font etc.). | 15 // Sets up a Label properly for the tray (sets color, font etc.). |
15 void SetupLabelForTray(views::Label* label); | 16 void SetupLabelForTray(views::Label* label); |
16 | 17 |
18 // Update the check mark when check or uncheck an item in system menu. | |
19 void SetCheckMarkVisible(HoverHighlightView* container); | |
20 void SetCheckMarkInvisible(HoverHighlightView* container); | |
17 } // namespace ash | 21 } // namespace ash |
18 | 22 |
19 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ | 23 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ |
OLD | NEW |