OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 namespace chromeos { | 9 namespace chromeos { |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 virtual void PrepareToShow() = 0; | 24 virtual void PrepareToShow() = 0; |
25 | 25 |
26 // Shows manual reboot info message. | 26 // Shows manual reboot info message. |
27 virtual void ShowManualRebootInfo() = 0; | 27 virtual void ShowManualRebootInfo() = 0; |
28 | 28 |
29 // Sets current progress in percents. | 29 // Sets current progress in percents. |
30 virtual void SetProgress(int progress) = 0; | 30 virtual void SetProgress(int progress) = 0; |
31 | 31 |
32 // Shows screen curtains. | 32 // Shows screen curtains. |
33 virtual void ShowCurtain(bool enable) = 0; | 33 virtual void ShowCurtain(bool enable) = 0; |
| 34 |
| 35 // Shows label for "Preparing updates" state. |
| 36 virtual void ShowPreparingUpdatesInfo(bool visible) = 0; |
34 }; | 37 }; |
35 | 38 |
36 } // namespace chromeos | 39 } // namespace chromeos |
37 | 40 |
38 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ | 41 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ |
OLD | NEW |