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_CONT
ROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_CONT
ROLLER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_CONT
ROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_CONT
ROLLER_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.h" | 14 #include "base/timer/timer.h" |
15 #include "chrome/browser/chromeos/login/managed/managed_user_authenticator.h" | 15 #include "chrome/browser/chromeos/login/managed/managed_user_authenticator.h" |
16 #include "chrome/browser/managed_mode/managed_user_registration_service.h" | 16 #include "chrome/browser/managed_mode/managed_user_registration_service.h" |
17 | 17 |
18 class Profile; | 18 class Profile; |
19 | 19 |
20 namespace chromeos { | 20 namespace chromeos { |
21 | 21 |
22 // LocallyManagedUserCreationController is used to locally managed user | 22 // LocallyManagedUserCreationController is used to locally managed user |
23 // creation. | 23 // creation. |
24 // LMU Creation process: | 24 // LMU Creation process: |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 | 122 |
123 // Factory of callbacks. | 123 // Factory of callbacks. |
124 base::WeakPtrFactory<LocallyManagedUserCreationController> weak_factory_; | 124 base::WeakPtrFactory<LocallyManagedUserCreationController> weak_factory_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationController); | 126 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationController); |
127 }; | 127 }; |
128 | 128 |
129 } // namespace chromeos | 129 } // namespace chromeos |
130 | 130 |
131 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_C
ONTROLLER_H_ | 131 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_C
ONTROLLER_H_ |
OLD | NEW |