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_MANAGED_MANAGED_USER_CREATION_CONTROLLER_N
EW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLER_N
EW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLER_N
EW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLER_N
EW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "chrome/browser/chromeos/login/extended_authenticator.h" | 16 #include "chrome/browser/chromeos/login/auth/extended_authenticator.h" |
17 #include "chrome/browser/chromeos/login/managed/managed_user_creation_controller
.h" | 17 #include "chrome/browser/chromeos/login/managed/managed_user_creation_controller
.h" |
18 #include "chrome/browser/managed_mode/managed_user_registration_utility.h" | 18 #include "chrome/browser/managed_mode/managed_user_registration_utility.h" |
19 | 19 |
20 class Profile; | 20 class Profile; |
21 | 21 |
22 namespace chromeos { | 22 namespace chromeos { |
23 | 23 |
24 // LMU Creation process: | 24 // LMU Creation process: |
25 // 0. Manager is logged in | 25 // 0. Manager is logged in |
26 // 1. Generate ID for new LMU | 26 // 1. Generate ID for new LMU |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 182 |
183 // Factory of callbacks. | 183 // Factory of callbacks. |
184 base::WeakPtrFactory<ManagedUserCreationControllerNew> weak_factory_; | 184 base::WeakPtrFactory<ManagedUserCreationControllerNew> weak_factory_; |
185 | 185 |
186 DISALLOW_COPY_AND_ASSIGN(ManagedUserCreationControllerNew); | 186 DISALLOW_COPY_AND_ASSIGN(ManagedUserCreationControllerNew); |
187 }; | 187 }; |
188 | 188 |
189 } // namespace chromeos | 189 } // namespace chromeos |
190 | 190 |
191 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLE
R_NEW_H_ | 191 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLE
R_NEW_H_ |
OLD | NEW |