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

Side by Side Diff: chrome/browser/chromeos/login/screens/screen_factory.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_SCREEN_FACTORY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_SCREEN_FACTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_SCREEN_FACTORY_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_SCREEN_FACTORY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "chrome/browser/chromeos/login/screens/base_screen.h" 11 #include "chrome/browser/chromeos/login/screens/base_screen.h"
12 12
13 namespace chromeos { 13 namespace chromeos {
14 14
15 class OobeDisplay; 15 class OobeDisplay;
16 class ScreenObserver; 16 class ScreenObserver;
17 17
18 // Class that can instantiate screens by name. 18 // Class that can instantiate screens by name.
19 class ScreenFactory { 19 class ScreenFactory {
20 public: 20 public:
21 static const char kEnrollmentScreenId[]; 21 static const char kEnrollmentScreenId[];
22 static const char kErrorScreenId[]; 22 static const char kErrorScreenId[];
23 static const char kEulaScreenId[]; 23 static const char kEulaScreenId[];
24 static const char kKioskAutolaunchScreenId[]; 24 static const char kKioskAutolaunchScreenId[];
25 static const char kLocallyManagedUserCreationScreenId[];
26 static const char kLoginScreenId[]; 25 static const char kLoginScreenId[];
27 static const char kNetworkScreenId[]; 26 static const char kNetworkScreenId[];
28 static const char kResetScreenId[]; 27 static const char kResetScreenId[];
28 static const char kSupervisedUserCreationScreenId[];
29 static const char kTermsOfServiceScreenId[]; 29 static const char kTermsOfServiceScreenId[];
30 static const char kUpdateScreenId[]; 30 static const char kUpdateScreenId[];
31 static const char kUserImageScreenId[]; 31 static const char kUserImageScreenId[];
32 static const char kWrongHWIDScreenId[]; 32 static const char kWrongHWIDScreenId[];
33 33
34 // |observer| to be passed to each created screen for providing screen 34 // |observer| to be passed to each created screen for providing screen
35 // outcome. Legacy, should be gone once refactoring is finished. 35 // outcome. Legacy, should be gone once refactoring is finished.
36 // |oobe_display| is a source for all the Handlers required for screens. 36 // |oobe_display| is a source for all the Handlers required for screens.
37 ScreenFactory(ScreenObserver* observer, 37 ScreenFactory(ScreenObserver* observer,
38 OobeDisplay* oobe_display); 38 OobeDisplay* oobe_display);
(...skipping 11 matching lines...) Expand all
50 50
51 // Now owned. Source of Handler objects for created screens. 51 // Now owned. Source of Handler objects for created screens.
52 OobeDisplay* oobe_display_; 52 OobeDisplay* oobe_display_;
53 53
54 DISALLOW_COPY_AND_ASSIGN(ScreenFactory); 54 DISALLOW_COPY_AND_ASSIGN(ScreenFactory);
55 }; 55 };
56 56
57 } // namespace chromeos 57 } // namespace chromeos
58 58
59 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_SCREEN_FACTORY_H_ 59 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_SCREEN_FACTORY_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/error_screen.h ('k') | chrome/browser/chromeos/login/screens/screen_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698