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

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

Issue 2779933002: Add a screen to migrate filesystem encryption from eCryptfs to ext4 crypto. (Closed)
Patch Set: Address review comments. Created 3 years, 8 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
OLDNEW
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 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_OOBE_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_SCREEN_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace chromeos { 10 namespace chromeos {
(...skipping 27 matching lines...) Expand all
38 SCREEN_APP_LAUNCH_SPLASH, 38 SCREEN_APP_LAUNCH_SPLASH,
39 SCREEN_ARC_KIOSK_SPLASH, 39 SCREEN_ARC_KIOSK_SPLASH,
40 SCREEN_CONFIRM_PASSWORD, 40 SCREEN_CONFIRM_PASSWORD,
41 SCREEN_FATAL_ERROR, 41 SCREEN_FATAL_ERROR,
42 SCREEN_OOBE_CONTROLLER_PAIRING, 42 SCREEN_OOBE_CONTROLLER_PAIRING,
43 SCREEN_OOBE_HOST_PAIRING, 43 SCREEN_OOBE_HOST_PAIRING,
44 SCREEN_DEVICE_DISABLED, 44 SCREEN_DEVICE_DISABLED,
45 SCREEN_UNRECOVERABLE_CRYPTOHOME_ERROR, 45 SCREEN_UNRECOVERABLE_CRYPTOHOME_ERROR,
46 SCREEN_USER_SELECTION, 46 SCREEN_USER_SELECTION,
47 SCREEN_ACTIVE_DIRECTORY_PASSWORD_CHANGE, 47 SCREEN_ACTIVE_DIRECTORY_PASSWORD_CHANGE,
48 SCREEN_ENCRYPTION_MIGRATION,
48 49
49 // Special "first screen" that initiates login flow. 50 // Special "first screen" that initiates login flow.
50 SCREEN_SPECIAL_LOGIN, 51 SCREEN_SPECIAL_LOGIN,
51 // Special "first screen" that initiates full OOBE flow. 52 // Special "first screen" that initiates full OOBE flow.
52 SCREEN_SPECIAL_OOBE, 53 SCREEN_SPECIAL_OOBE,
53 // Special test value that commands not to create any window yet. 54 // Special test value that commands not to create any window yet.
54 SCREEN_TEST_NO_WINDOW, 55 SCREEN_TEST_NO_WINDOW,
55 56
56 SCREEN_UNKNOWN // This must always be the last element. 57 SCREEN_UNKNOWN // This must always be the last element.
57 }; 58 };
58 59
59 // Returns the JS name for the given screen. 60 // Returns the JS name for the given screen.
60 std::string GetOobeScreenName(OobeScreen screen); 61 std::string GetOobeScreenName(OobeScreen screen);
61 62
62 // Converts the JS name for the given sreen into a Screen instance. 63 // Converts the JS name for the given sreen into a Screen instance.
63 OobeScreen GetOobeScreenFromName(const std::string& name); 64 OobeScreen GetOobeScreenFromName(const std::string& name);
64 65
65 } // namespace chromeos 66 } // namespace chromeos
66 67
67 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_SCREEN_H_ 68 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_OOBE_SCREEN_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/existing_user_controller.cc ('k') | chrome/browser/chromeos/login/oobe_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698