Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: chrome/browser/chromeos/login/update_screen_actor.h

Issue 7057055: Show progress bar as soon as update state changed to UPDATE_STATUS_UPDATE_AVAILABLE (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed test again Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/update_screen.cc ('k') | chrome/browser/chromeos/login/update_screen_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698