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

Unified Diff: chrome/browser/chromeos/login/supervised/supervised_user_authenticator.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/supervised/supervised_user_authenticator.h
diff --git a/chrome/browser/chromeos/login/managed/managed_user_authenticator.h b/chrome/browser/chromeos/login/supervised/supervised_user_authenticator.h
similarity index 83%
rename from chrome/browser/chromeos/login/managed/managed_user_authenticator.h
rename to chrome/browser/chromeos/login/supervised/supervised_user_authenticator.h
index 401180fc6773b41723f6de5752433266d0baf9a4..51a61f6c73083eb2d59c4bef3e13442c73a85c35 100644
--- a/chrome/browser/chromeos/login/managed/managed_user_authenticator.h
+++ b/chrome/browser/chromeos/login/supervised/supervised_user_authenticator.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_AUTHENTICATOR_H_
-#define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_AUTHENTICATOR_H_
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_AUTHENTICATOR_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_AUTHENTICATOR_H_
#include <string>
@@ -15,13 +15,13 @@
namespace chromeos {
-// Authenticates locally managed users against the cryptohome.
+// Authenticates supervised users against the cryptohome.
//
// Typical flow:
// AuthenticateToMount() calls a Cryptohome to perform offline login,
// AuthenticateToCreate() calls a Cryptohome to create new cryptohome.
-class ManagedUserAuthenticator
- : public base::RefCountedThreadSafe<ManagedUserAuthenticator> {
+class SupervisedUserAuthenticator
+ : public base::RefCountedThreadSafe<SupervisedUserAuthenticator> {
public:
enum AuthState {
CONTINUE, // State indeterminate; try again when more info available.
@@ -80,7 +80,7 @@ class ManagedUserAuthenticator
virtual void OnAddKeySuccess() = 0;
};
- explicit ManagedUserAuthenticator(AuthStatusConsumer* consumer);
+ explicit SupervisedUserAuthenticator(AuthStatusConsumer* consumer);
void AuthenticateToMount(const std::string& username,
const std::string& password);
@@ -94,9 +94,9 @@ class ManagedUserAuthenticator
void Resolve();
private:
- friend class base::RefCountedThreadSafe<ManagedUserAuthenticator>;
+ friend class base::RefCountedThreadSafe<SupervisedUserAuthenticator>;
- ~ManagedUserAuthenticator();
+ ~SupervisedUserAuthenticator();
AuthState ResolveState();
AuthState ResolveCryptohomeFailureState();
@@ -107,9 +107,9 @@ class ManagedUserAuthenticator
scoped_ptr<AuthAttempt> current_state_;
AuthStatusConsumer* consumer_;
- DISALLOW_COPY_AND_ASSIGN(ManagedUserAuthenticator);
+ DISALLOW_COPY_AND_ASSIGN(SupervisedUserAuthenticator);
};
} // namespace chromeos
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_AUTHENTICATOR_H_
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_AUTHENTICATOR_H_

Powered by Google App Engine
This is Rietveld 408576698