| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SUPERVISED_SUPERVISED_USER_CREATION_FLOW_H
_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_FLOW_H
_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_FLOW_H
_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_FLOW_H
_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "chrome/browser/chromeos/login/user_flow.h" | 11 #include "chrome/browser/chromeos/login/user_flow.h" |
| 12 #include "components/user_manager/user.h" | 12 #include "components/user_manager/user.h" |
| 13 | 13 |
| 14 class Profile; | 14 class Profile; |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 | 17 |
| 18 // UserFlow implementation for creating new supervised user. | 18 // UserFlow implementation for creating new supervised user. |
| 19 class SupervisedUserCreationFlow : public ExtendedUserFlow { | 19 class SupervisedUserCreationFlow : public ExtendedUserFlow { |
| 20 public: | 20 public: |
| 21 explicit SupervisedUserCreationFlow(const std::string& manager_id); | 21 explicit SupervisedUserCreationFlow(const std::string& manager_id); |
| 22 virtual ~SupervisedUserCreationFlow(); | 22 virtual ~SupervisedUserCreationFlow(); |
| 23 | 23 |
| 24 virtual bool CanLockScreen() OVERRIDE; | 24 virtual bool CanLockScreen() override; |
| 25 virtual bool ShouldShowSettings() OVERRIDE; | 25 virtual bool ShouldShowSettings() override; |
| 26 virtual bool ShouldLaunchBrowser() OVERRIDE; | 26 virtual bool ShouldLaunchBrowser() override; |
| 27 virtual bool ShouldSkipPostLoginScreens() OVERRIDE; | 27 virtual bool ShouldSkipPostLoginScreens() override; |
| 28 virtual bool HandleLoginFailure(const AuthFailure& failure) OVERRIDE; | 28 virtual bool HandleLoginFailure(const AuthFailure& failure) override; |
| 29 virtual void HandleLoginSuccess(const UserContext& context) OVERRIDE; | 29 virtual void HandleLoginSuccess(const UserContext& context) override; |
| 30 virtual bool HandlePasswordChangeDetected() OVERRIDE; | 30 virtual bool HandlePasswordChangeDetected() override; |
| 31 virtual void HandleOAuthTokenStatusChange( | 31 virtual void HandleOAuthTokenStatusChange( |
| 32 user_manager::User::OAuthTokenStatus status) OVERRIDE; | 32 user_manager::User::OAuthTokenStatus status) override; |
| 33 virtual void LaunchExtraSteps(Profile* profile) OVERRIDE; | 33 virtual void LaunchExtraSteps(Profile* profile) override; |
| 34 private: | 34 private: |
| 35 // Display name for user being created. | 35 // Display name for user being created. |
| 36 base::string16 name_; | 36 base::string16 name_; |
| 37 // Password for user being created. | 37 // Password for user being created. |
| 38 std::string password_; | 38 std::string password_; |
| 39 | 39 |
| 40 // Indicates if manager OAuth2 token has been validated. | 40 // Indicates if manager OAuth2 token has been validated. |
| 41 bool token_validated_; | 41 bool token_validated_; |
| 42 | 42 |
| 43 // Indicates if manager was successfully authenticated against | 43 // Indicates if manager was successfully authenticated against |
| 44 // local cryptohome. | 44 // local cryptohome. |
| 45 bool logged_in_; | 45 bool logged_in_; |
| 46 | 46 |
| 47 // Indicates that cryptohome is mounted and OAuth2 token is validated. | 47 // Indicates that cryptohome is mounted and OAuth2 token is validated. |
| 48 // Used to avoid multiple notifications. | 48 // Used to avoid multiple notifications. |
| 49 bool session_started_; | 49 bool session_started_; |
| 50 | 50 |
| 51 Profile* manager_profile_; | 51 Profile* manager_profile_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreationFlow); | 53 DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreationFlow); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace chromeos | 56 } // namespace chromeos |
| 57 | 57 |
| 58 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_FLO
W_H_ | 58 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_FLO
W_H_ |
| OLD | NEW |