Chromium Code Reviews| Index: chrome/browser/chromeos/login/screens/eula_model.cc |
| diff --git a/chromeos/login/auth/auth_attempt_state_resolver.cc b/chrome/browser/chromeos/login/screens/eula_model.cc |
| similarity index 53% |
| copy from chromeos/login/auth/auth_attempt_state_resolver.cc |
| copy to chrome/browser/chromeos/login/screens/eula_model.cc |
| index b8def0d12d149361b9cb291ebdacc73b7789fe53..0a7e7f45834461baaa45892424a3373fb5fd9940 100644 |
| --- a/chromeos/login/auth/auth_attempt_state_resolver.cc |
| +++ b/chrome/browser/chromeos/login/screens/eula_model.cc |
| @@ -2,14 +2,15 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "chromeos/login/auth/auth_attempt_state_resolver.h" |
| +#include "chrome/browser/chromeos/login/screens/eula_model.h" |
| namespace chromeos { |
| -AuthAttemptStateResolver::AuthAttemptStateResolver() { |
| +EulaModel::EulaModel(BaseScreenDelegate* base_screen_delegate) |
| + : BaseScreen(base_screen_delegate) { |
| } |
| -AuthAttemptStateResolver::~AuthAttemptStateResolver() { |
| +EulaModel::~EulaModel() { |
|
Denis Kuznetsov (DE-MUC)
2014/11/25 17:31:17
move GetName() implementation here.
ygorshenin1
2014/11/26 11:45:40
Done.
|
| } |
| } // namespace chromeos |