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

Unified Diff: chrome/browser/chromeos/login/managed/supervised_user_login_flow.h

Issue 101283003: Add first implemenation for SU password sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated comment Created 7 years 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/managed/supervised_user_login_flow.h
diff --git a/chrome/browser/chromeos/login/managed/locally_managed_user_login_flow.h b/chrome/browser/chromeos/login/managed/supervised_user_login_flow.h
similarity index 68%
rename from chrome/browser/chromeos/login/managed/locally_managed_user_login_flow.h
rename to chrome/browser/chromeos/login/managed/supervised_user_login_flow.h
index c3a6c62190b13cc0f9e190ab7428a997559e0f65..4895dbf114458d7b1423859693474b2132e548ba 100644
--- a/chrome/browser/chromeos/login/managed/locally_managed_user_login_flow.h
+++ b/chrome/browser/chromeos/login/managed/supervised_user_login_flow.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_LOCALLY_MANAGED_USER_LOGIN_FLOW_H_
-#define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_LOGIN_FLOW_H_
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_SUPERVISED_USER_LOGIN_FLOW_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_SUPERVISED_USER_LOGIN_FLOW_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
@@ -14,10 +14,10 @@
namespace chromeos {
// UserFlow implementation for signing in locally managed user.
-class LocallyManagedUserLoginFlow : public ExtendedUserFlow {
+class SupervisedUserLoginFlow : public ExtendedUserFlow {
public:
- explicit LocallyManagedUserLoginFlow(const std::string& user_id);
- virtual ~LocallyManagedUserLoginFlow();
+ explicit SupervisedUserLoginFlow(const std::string& user_id);
+ virtual ~SupervisedUserLoginFlow();
// Registers flow preferences.
// static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -38,11 +38,11 @@ class LocallyManagedUserLoginFlow : public ExtendedUserFlow {
bool data_loaded_;
Profile* profile_;
- base::WeakPtrFactory<LocallyManagedUserLoginFlow> weak_factory_;
+ base::WeakPtrFactory<SupervisedUserLoginFlow> weak_factory_;
- DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserLoginFlow);
+ DISALLOW_COPY_AND_ASSIGN(SupervisedUserLoginFlow);
};
} // namespace chromeos
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_LOGIN_FLOW_H_
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_SUPERVISED_USER_LOGIN_FLOW_H_

Powered by Google App Engine
This is Rietveld 408576698