| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> |
| 5 #include <sys/types.h> | 6 #include <sys/types.h> |
| 6 | 7 |
| 7 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 8 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "base/prefs/pref_service.h" | 12 #include "base/prefs/pref_service.h" |
| 12 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
| 13 #include "chrome/browser/chromeos/input_method/input_method_manager_impl.h" | 14 #include "chrome/browser/chromeos/input_method/input_method_manager_impl.h" |
| 14 #include "chrome/browser/chromeos/login/login_manager_test.h" | 15 #include "chrome/browser/chromeos/login/login_manager_test.h" |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 !prefs1->GetBoolean(prefs::kTapToClickEnabled)); | 208 !prefs1->GetBoolean(prefs::kTapToClickEnabled)); |
| 208 CheckLocalStateCorrespondsToPrefs(prefs1); | 209 CheckLocalStateCorrespondsToPrefs(prefs1); |
| 209 | 210 |
| 210 // Switch user back. | 211 // Switch user back. |
| 211 user_manager->SwitchActiveUser(test_users_[0]); | 212 user_manager->SwitchActiveUser(test_users_[0]); |
| 212 CheckSettingsCorrespondToPrefs(prefs1); | 213 CheckSettingsCorrespondToPrefs(prefs1); |
| 213 CheckLocalStateCorrespondsToPrefs(prefs1); | 214 CheckLocalStateCorrespondsToPrefs(prefs1); |
| 214 } | 215 } |
| 215 | 216 |
| 216 } // namespace chromeos | 217 } // namespace chromeos |
| OLD | NEW |