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_CONTRO
LLER_NEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_CONTRO
LLER_NEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_CONTRO
LLER_NEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_CONTRO
LLER_NEW_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/auth/extended_authenticator.h" | |
17 #include "chrome/browser/chromeos/login/supervised/supervised_user_creation_cont
roller.h" | 16 #include "chrome/browser/chromeos/login/supervised/supervised_user_creation_cont
roller.h" |
18 #include "chrome/browser/supervised_user/supervised_user_registration_utility.h" | 17 #include "chrome/browser/supervised_user/supervised_user_registration_utility.h" |
| 18 #include "chromeos/login/auth/extended_authenticator.h" |
19 | 19 |
20 class Profile; | 20 class Profile; |
21 | 21 |
22 namespace chromeos { | 22 namespace chromeos { |
23 | 23 |
24 class UserContext; | 24 class UserContext; |
25 | 25 |
26 // Supervised user creation process: | 26 // Supervised user creation process: |
27 // 0. Manager is logged in | 27 // 0. Manager is logged in |
28 // 1. Generate ID for new supervised user | 28 // 1. Generate ID for new supervised user |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 184 |
185 // Factory of callbacks. | 185 // Factory of callbacks. |
186 base::WeakPtrFactory<SupervisedUserCreationControllerNew> weak_factory_; | 186 base::WeakPtrFactory<SupervisedUserCreationControllerNew> weak_factory_; |
187 | 187 |
188 DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreationControllerNew); | 188 DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreationControllerNew); |
189 }; | 189 }; |
190 | 190 |
191 } // namespace chromeos | 191 } // namespace chromeos |
192 | 192 |
193 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_CON
TROLLER_NEW_H_ | 193 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_CON
TROLLER_NEW_H_ |
OLD | NEW |