| 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/preferences.h" | 5 #include "chrome/browser/chromeos/preferences.h" |
| 6 | 6 |
| 7 #include "base/prefs/pref_member.h" | 7 #include "base/prefs/pref_member.h" |
| 8 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h" | 8 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h" |
| 9 #include "chrome/browser/download/chrome_download_manager_delegate.h" | |
| 10 #include "chrome/browser/download/download_prefs.h" | 9 #include "chrome/browser/download/download_prefs.h" |
| 11 #include "chrome/common/pref_names.h" | 10 #include "chrome/common/pref_names.h" |
| 12 #include "chrome/test/base/testing_pref_service_syncable.h" | 11 #include "chrome/test/base/testing_pref_service_syncable.h" |
| 13 #include "components/user_prefs/pref_registry_syncable.h" | 12 #include "components/user_prefs/pref_registry_syncable.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 14 |
| 16 namespace chromeos { | 15 namespace chromeos { |
| 17 namespace { | 16 namespace { |
| 18 | 17 |
| 19 class MyMockInputMethodManager : public input_method::MockInputMethodManager { | 18 class MyMockInputMethodManager : public input_method::MockInputMethodManager { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 StringPrefMember* previous_; | 51 StringPrefMember* previous_; |
| 53 StringPrefMember* current_; | 52 StringPrefMember* current_; |
| 54 }; | 53 }; |
| 55 | 54 |
| 56 } // anonymous namespace | 55 } // anonymous namespace |
| 57 | 56 |
| 58 TEST(PreferencesTest, TestUpdatePrefOnBrowserScreenDetails) { | 57 TEST(PreferencesTest, TestUpdatePrefOnBrowserScreenDetails) { |
| 59 TestingPrefServiceSyncable prefs; | 58 TestingPrefServiceSyncable prefs; |
| 60 Preferences::RegisterUserPrefs(prefs.registry()); | 59 Preferences::RegisterUserPrefs(prefs.registry()); |
| 61 DownloadPrefs::RegisterUserPrefs(prefs.registry()); | 60 DownloadPrefs::RegisterUserPrefs(prefs.registry()); |
| 62 ChromeDownloadManagerDelegate::RegisterUserPrefs(prefs.registry()); | |
| 63 // kSelectFileLastDirectory is registered for Profile. Here we register it for | 61 // kSelectFileLastDirectory is registered for Profile. Here we register it for |
| 64 // testing. | 62 // testing. |
| 65 prefs.registry()->RegisterStringPref( | 63 prefs.registry()->RegisterStringPref( |
| 66 prefs::kSelectFileLastDirectory, | 64 prefs::kSelectFileLastDirectory, |
| 67 std::string(), | 65 std::string(), |
| 68 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); | 66 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); |
| 69 | 67 |
| 70 StringPrefMember previous; | 68 StringPrefMember previous; |
| 71 previous.Init(prefs::kLanguagePreviousInputMethod, &prefs); | 69 previous.Init(prefs::kLanguagePreviousInputMethod, &prefs); |
| 72 previous.SetValue("KeyboardA"); | 70 previous.SetValue("KeyboardA"); |
| 73 StringPrefMember current; | 71 StringPrefMember current; |
| 74 current.Init(prefs::kLanguageCurrentInputMethod, &prefs); | 72 current.Init(prefs::kLanguageCurrentInputMethod, &prefs); |
| 75 current.SetValue("KeyboardB"); | 73 current.SetValue("KeyboardB"); |
| 76 | 74 |
| 77 MyMockInputMethodManager mock_manager(&previous, ¤t); | 75 MyMockInputMethodManager mock_manager(&previous, ¤t); |
| 78 Preferences testee(&mock_manager); | 76 Preferences testee(&mock_manager); |
| 79 testee.InitUserPrefsForTesting(&prefs); | 77 testee.InitUserPrefsForTesting(&prefs); |
| 80 testee.SetInputMethodListForTesting(); | 78 testee.SetInputMethodListForTesting(); |
| 81 | 79 |
| 82 // Confirm they're unchanged. | 80 // Confirm they're unchanged. |
| 83 EXPECT_EQ("KeyboardA", previous.GetValue()); | 81 EXPECT_EQ("KeyboardA", previous.GetValue()); |
| 84 EXPECT_EQ("KeyboardB", current.GetValue()); | 82 EXPECT_EQ("KeyboardB", current.GetValue()); |
| 85 EXPECT_EQ("KeyboardB", mock_manager.last_input_method_id_); | 83 EXPECT_EQ("KeyboardB", mock_manager.last_input_method_id_); |
| 86 } | 84 } |
| 87 | 85 |
| 88 } // namespace chromeos | 86 } // namespace chromeos |
| OLD | NEW |