| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW
_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW
_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW
_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_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/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 | 12 |
| 13 class Profile; | 13 class Profile; |
| 14 | 14 |
| 15 namespace chromeos { | 15 namespace chromeos { |
| 16 | 16 |
| 17 // UserFlow implementation for creating new locally managed user. | 17 // UserFlow implementation for creating new locally managed user. |
| 18 class LocallyManagedUserCreationFlow : public ExtendedUserFlow { | 18 class LocallyManagedUserCreationFlow : public ExtendedUserFlow { |
| 19 public: | 19 public: |
| 20 explicit LocallyManagedUserCreationFlow(const std::string& manager_id); | 20 explicit LocallyManagedUserCreationFlow(const std::string& manager_id); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 41 bool logged_in_; | 41 bool logged_in_; |
| 42 | 42 |
| 43 Profile* manager_profile_; | 43 Profile* manager_profile_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationFlow); | 45 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationFlow); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace chromeos | 48 } // namespace chromeos |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_F
LOW_H_ | 50 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_F
LOW_H_ |
| OLD | NEW |