| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/fake_user_manager.h" | 5 #include "chrome/browser/chromeos/login/users/fake_user_manager.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/login/fake_supervised_user_manager.h" | 7 #include "chrome/browser/chromeos/login/users/fake_supervised_user_manager.h" |
| 8 | 8 |
| 9 namespace { | 9 namespace { |
| 10 | 10 |
| 11 // As defined in /chromeos/dbus/cryptohome_client.cc. | 11 // As defined in /chromeos/dbus/cryptohome_client.cc. |
| 12 static const char kUserIdHashSuffix[] = "-hash"; | 12 static const char kUserIdHashSuffix[] = "-hash"; |
| 13 | 13 |
| 14 } // namespace | 14 } // namespace |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 | 17 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 } | 290 } |
| 291 | 291 |
| 292 bool FakeUserManager::RespectLocalePreference( | 292 bool FakeUserManager::RespectLocalePreference( |
| 293 Profile* profile, | 293 Profile* profile, |
| 294 const User* user, | 294 const User* user, |
| 295 scoped_ptr<locale_util::SwitchLanguageCallback> callback) const { | 295 scoped_ptr<locale_util::SwitchLanguageCallback> callback) const { |
| 296 return false; | 296 return false; |
| 297 } | 297 } |
| 298 | 298 |
| 299 } // namespace chromeos | 299 } // namespace chromeos |
| OLD | NEW |