| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/user_manager/known_user.h" | 5 #include "components/user_manager/known_user.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/logging.h" | 9 #include "base/logging.h" |
| 8 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/prefs/pref_registry_simple.h" | 11 #include "base/prefs/pref_registry_simple.h" |
| 10 #include "base/prefs/scoped_user_pref_update.h" | 12 #include "base/prefs/scoped_user_pref_update.h" |
| 11 #include "base/values.h" | 13 #include "base/values.h" |
| 12 #include "chromeos/login/user_names.h" | 14 #include "chromeos/login/user_names.h" |
| 13 #include "components/user_manager/user_manager.h" | 15 #include "components/user_manager/user_manager.h" |
| 14 #include "google_apis/gaia/gaia_auth_util.h" | 16 #include "google_apis/gaia/gaia_auth_util.h" |
| 15 | 17 |
| 16 namespace user_manager { | 18 namespace user_manager { |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 } | 327 } |
| 326 } | 328 } |
| 327 } | 329 } |
| 328 | 330 |
| 329 void RegisterPrefs(PrefRegistrySimple* registry) { | 331 void RegisterPrefs(PrefRegistrySimple* registry) { |
| 330 registry->RegisterListPref(kKnownUsers); | 332 registry->RegisterListPref(kKnownUsers); |
| 331 } | 333 } |
| 332 | 334 |
| 333 } // namespace known_user | 335 } // namespace known_user |
| 334 } // namespace user_manager | 336 } // namespace user_manager |
| OLD | NEW |