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

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

Issue 10928088: Factory reset screen is added (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed formatting Created 8 years, 3 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_RESET_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_RESET_SCREEN_H_
7
8 #include <string>
9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "chrome/browser/chromeos/login/reset_screen_actor.h"
13 #include "chrome/browser/chromeos/login/wizard_screen.h"
14
15 namespace chromeos {
16
17 // Representation independent class that controls screen showing reset to users.
18 class ResetScreen : public WizardScreen,
19 public ResetScreenActor::Delegate {
20 public:
21 ResetScreen(ScreenObserver* observer, ResetScreenActor* actor);
22 virtual ~ResetScreen();
23
24 // WizardScreen implementation:
25 virtual void PrepareToShow() OVERRIDE;
26 virtual void Show() OVERRIDE;
27 virtual void Hide() OVERRIDE;
28 virtual std::string GetName() const OVERRIDE;
29
30 // ResetScreenActor::Delegate implementation:
31 virtual void OnExit() OVERRIDE;
32 virtual void OnActorDestroyed(ResetScreenActor* actor) OVERRIDE;
33
34 private:
35 ResetScreenActor* actor_;
36
37 DISALLOW_COPY_AND_ASSIGN(ResetScreen);
38 };
39
40 } // namespace chromeos
41
42 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_RESET_SCREEN_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/oobe_display.h ('k') | chrome/browser/chromeos/login/reset_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698