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

Unified Diff: chrome/browser/sync/supervised_user_signin_manager_wrapper.h

Issue 335273005: Rename "managed (mode|user)" to "supervised user" (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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/sync/supervised_user_signin_manager_wrapper.h
diff --git a/chrome/browser/sync/managed_user_signin_manager_wrapper.h b/chrome/browser/sync/supervised_user_signin_manager_wrapper.h
similarity index 52%
rename from chrome/browser/sync/managed_user_signin_manager_wrapper.h
rename to chrome/browser/sync/supervised_user_signin_manager_wrapper.h
index 059d0fe35be8754f11a701f32dce4b4fdb0186ab..afe8a132cf7591bebc9cac3567744cc10c7f7d07 100644
--- a/chrome/browser/sync/managed_user_signin_manager_wrapper.h
+++ b/chrome/browser/sync/supervised_user_signin_manager_wrapper.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_SYNC_MANAGED_USER_SIGNIN_MANAGER_WRAPPER_H_
-#define CHROME_BROWSER_SYNC_MANAGED_USER_SIGNIN_MANAGER_WRAPPER_H_
+#ifndef CHROME_BROWSER_SYNC_SUPERVISED_USER_SIGNIN_MANAGER_WRAPPER_H_
+#define CHROME_BROWSER_SYNC_SUPERVISED_USER_SIGNIN_MANAGER_WRAPPER_H_
#include <string>
@@ -12,16 +12,16 @@
class Profile;
class SigninManagerBase;
-// Some chrome cloud services support managed users as well as normally
+// Some chrome cloud services support supervised users as well as normally
// authenticated users that sign in through SigninManager. To facilitate
// getting the "effective" username and account identifiers, services can
-// use this class to wrap the SigninManager and return managed user account
+// use this class to wrap the SigninManager and return supervised user account
// information when appropriate.
-class ManagedUserSigninManagerWrapper {
+class SupervisedUserSigninManagerWrapper {
public:
- ManagedUserSigninManagerWrapper(Profile* profile,
- SigninManagerBase* original);
- virtual ~ManagedUserSigninManagerWrapper();
+ SupervisedUserSigninManagerWrapper(Profile* profile,
+ SigninManagerBase* original);
+ virtual ~SupervisedUserSigninManagerWrapper();
virtual std::string GetEffectiveUsername() const;
virtual std::string GetAccountIdToUse() const;
@@ -33,7 +33,7 @@ class ManagedUserSigninManagerWrapper {
private:
Profile* profile_;
SigninManagerBase* original_;
- DISALLOW_COPY_AND_ASSIGN(ManagedUserSigninManagerWrapper);
+ DISALLOW_COPY_AND_ASSIGN(SupervisedUserSigninManagerWrapper);
};
-#endif // CHROME_BROWSER_SYNC_MANAGED_USER_SIGNIN_MANAGER_WRAPPER_H_
+#endif // CHROME_BROWSER_SYNC_SUPERVISED_USER_SIGNIN_MANAGER_WRAPPER_H_
« no previous file with comments | « chrome/browser/sync/startup_controller_unittest.cc ('k') | chrome/browser/sync/supervised_user_signin_manager_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698