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

Side by Side Diff: chrome/browser/chromeos/login/screens/error_screen.h

Issue 393343002: Rename "managed (mode|user)" to "supervised user" (part 7) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more alphabetize (and rebase again) Created 6 years, 5 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) 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 CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 10 matching lines...) Expand all
21 21
22 // Controller for the error screen. 22 // Controller for the error screen.
23 class ErrorScreen : public WizardScreen, 23 class ErrorScreen : public WizardScreen,
24 public ErrorScreenActorDelegate, 24 public ErrorScreenActorDelegate,
25 public LoginPerformer::Delegate { 25 public LoginPerformer::Delegate {
26 public: 26 public:
27 enum UIState { 27 enum UIState {
28 UI_STATE_UNKNOWN = 0, 28 UI_STATE_UNKNOWN = 0,
29 UI_STATE_UPDATE, 29 UI_STATE_UPDATE,
30 UI_STATE_SIGNIN, 30 UI_STATE_SIGNIN,
31 UI_STATE_LOCALLY_MANAGED, 31 UI_STATE_SUPERVISED,
32 UI_STATE_KIOSK_MODE, 32 UI_STATE_KIOSK_MODE,
33 UI_STATE_LOCAL_STATE_ERROR, 33 UI_STATE_LOCAL_STATE_ERROR,
34 UI_STATE_AUTO_ENROLLMENT_ERROR, 34 UI_STATE_AUTO_ENROLLMENT_ERROR,
35 UI_STATE_ROLLBACK_ERROR, 35 UI_STATE_ROLLBACK_ERROR,
36 }; 36 };
37 37
38 enum ErrorState { 38 enum ErrorState {
39 ERROR_STATE_UNKNOWN = 0, 39 ERROR_STATE_UNKNOWN = 0,
40 ERROR_STATE_PORTAL, 40 ERROR_STATE_PORTAL,
41 ERROR_STATE_OFFLINE, 41 ERROR_STATE_OFFLINE,
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 scoped_ptr<LoginPerformer> guest_login_performer_; 110 scoped_ptr<LoginPerformer> guest_login_performer_;
111 111
112 base::WeakPtrFactory<ErrorScreen> weak_factory_; 112 base::WeakPtrFactory<ErrorScreen> weak_factory_;
113 113
114 DISALLOW_COPY_AND_ASSIGN(ErrorScreen); 114 DISALLOW_COPY_AND_ASSIGN(ErrorScreen);
115 }; 115 };
116 116
117 } // namespace chromeos 117 } // namespace chromeos
118 118
119 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_H_ 119 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ERROR_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698