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

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

Issue 8538002: Cleanup: Remove unneeded forward declarations from chrome/browser/chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix a small nit Created 9 years, 1 month 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
11 class WizardScreen;
12 class ScreenObserver;
13
14 class UpdateScreenActor { 11 class UpdateScreenActor {
15 public: 12 public:
16 class Delegate { 13 class Delegate {
17 public: 14 public:
18 virtual ~Delegate() {} 15 virtual ~Delegate() {}
19 // Force cancel update. 16 // Force cancel update.
20 virtual void CancelUpdate() = 0; 17 virtual void CancelUpdate() = 0;
21 virtual void OnActorDestroyed(UpdateScreenActor* actor) = 0; 18 virtual void OnActorDestroyed(UpdateScreenActor* actor) = 0;
22 }; 19 };
23 20
(...skipping 19 matching lines...) Expand all
43 // Shows screen curtains. 40 // Shows screen curtains.
44 virtual void ShowCurtain(bool enable) = 0; 41 virtual void ShowCurtain(bool enable) = 0;
45 42
46 // Shows label for "Preparing updates" state. 43 // Shows label for "Preparing updates" state.
47 virtual void ShowPreparingUpdatesInfo(bool visible) = 0; 44 virtual void ShowPreparingUpdatesInfo(bool visible) = 0;
48 }; 45 };
49 46
50 } // namespace chromeos 47 } // namespace chromeos
51 48
52 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_ 49 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_ACTOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screen_locker_tester.h ('k') | chrome/browser/chromeos/login/user_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698