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 #include "chrome/browser/chromeos/login/managed/locally_managed_user_creation_fl
ow.h" | 5 #include "chrome/browser/chromeos/login/managed/locally_managed_user_creation_fl
ow.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/browser/chromeos/login/base_login_display_host.h" | 9 #include "chrome/browser/chromeos/login/base_login_display_host.h" |
10 #include "chrome/browser/chromeos/login/managed/locally_managed_user_creation_sc
reen.h" | 10 #include "chrome/browser/chromeos/login/managed/locally_managed_user_creation_sc
reen.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 return true; | 48 return true; |
49 } | 49 } |
50 | 50 |
51 bool LocallyManagedUserCreationFlow::HandlePasswordChangeDetected( | 51 bool LocallyManagedUserCreationFlow::HandlePasswordChangeDetected( |
52 LoginDisplayHost* host) { | 52 LoginDisplayHost* host) { |
53 GetScreen(host)->ShowManagerInconsistentStateErrorScreen(); | 53 GetScreen(host)->ShowManagerInconsistentStateErrorScreen(); |
54 return true; | 54 return true; |
55 } | 55 } |
56 | 56 |
57 void LocallyManagedUserCreationFlow::LaunchExtraSteps( | 57 void LocallyManagedUserCreationFlow::LaunchExtraSteps( |
| 58 Profile* profile, |
58 LoginDisplayHost* host) { | 59 LoginDisplayHost* host) { |
59 GetScreen(host)->OnManagerSignIn(); | 60 GetScreen(host)->OnManagerSignIn(); |
60 } | 61 } |
61 | 62 |
62 } // namespace chromeos | 63 } // namespace chromeos |
OLD | NEW |