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

Unified Diff: chrome/browser/chromeos/login/managed/supervised_user_login_flow.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/managed/supervised_user_login_flow.h
diff --git a/chrome/browser/chromeos/login/managed/supervised_user_login_flow.h b/chrome/browser/chromeos/login/managed/supervised_user_login_flow.h
deleted file mode 100644
index c9e5612ffe02c579e638ba2d6063555c760475aa..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/login/managed/supervised_user_login_flow.h
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// 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_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"
-#include "base/memory/weak_ptr.h"
-#include "base/strings/string16.h"
-#include "chrome/browser/chromeos/login/auth/extended_authenticator.h"
-#include "chrome/browser/chromeos/login/user_flow.h"
-#include "chromeos/login/auth/user_context.h"
-
-namespace chromeos {
-
-// UserFlow implementation for signing in locally managed user.
-class SupervisedUserLoginFlow
- : public ExtendedUserFlow,
- public ExtendedAuthenticator::NewAuthStatusConsumer {
- public:
- explicit SupervisedUserLoginFlow(const std::string& user_id);
- virtual ~SupervisedUserLoginFlow();
-
- // ExtendedUserFlow overrides.
- virtual bool CanLockScreen() OVERRIDE;
- virtual bool ShouldLaunchBrowser() OVERRIDE;
- virtual bool ShouldSkipPostLoginScreens() OVERRIDE;
- virtual bool HandleLoginFailure(const AuthFailure& failure) OVERRIDE;
- virtual void HandleLoginSuccess(const UserContext& context) OVERRIDE;
- virtual bool HandlePasswordChangeDetected() OVERRIDE;
- virtual void HandleOAuthTokenStatusChange(User::OAuthTokenStatus status)
- OVERRIDE;
- virtual void LaunchExtraSteps(Profile* profile) OVERRIDE;
-
- // ExtendedAuthenticator::NewAuthStatusConsumer overrides.
- virtual void OnAuthenticationFailure(ExtendedAuthenticator::AuthState state)
- OVERRIDE;
-
- private:
- void Launch();
- void Finish();
-
- void OnSyncSetupDataLoaded(const std::string& token);
- void ConfigureSync(const std::string& token);
- void OnPasswordChangeDataLoaded(const base::DictionaryValue* password_data);
- void OnPasswordChangeDataLoadFailed();
- void OnNewKeyAdded(scoped_ptr<base::DictionaryValue> password_data);
- void OnOldKeyRemoved();
- void OnPasswordUpdated(scoped_ptr<base::DictionaryValue> password_data);
-
- scoped_refptr<ExtendedAuthenticator> authenticator_;
-
- bool data_loaded_;
- UserContext context_;
- Profile* profile_;
- base::WeakPtrFactory<SupervisedUserLoginFlow> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(SupervisedUserLoginFlow);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_SUPERVISED_USER_LOGIN_FLOW_H_

Powered by Google App Engine
This is Rietveld 408576698