| 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/content_settings/content_settings_pref_provider.h" | 5 #include "chrome/browser/content_settings/content_settings_pref_provider.h" |
| 6 | 6 |
| 7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 // Test for regression in which the PrefProvider modified the user pref store | 130 // Test for regression in which the PrefProvider modified the user pref store |
| 131 // of the OTR unintentionally: http://crbug.com/74466. | 131 // of the OTR unintentionally: http://crbug.com/74466. |
| 132 TEST_F(PrefProviderTest, Incognito) { | 132 TEST_F(PrefProviderTest, Incognito) { |
| 133 PersistentPrefStore* user_prefs = new TestingPrefStore(); | 133 PersistentPrefStore* user_prefs = new TestingPrefStore(); |
| 134 OverlayUserPrefStore* otr_user_prefs = | 134 OverlayUserPrefStore* otr_user_prefs = |
| 135 new OverlayUserPrefStore(user_prefs); | 135 new OverlayUserPrefStore(user_prefs); |
| 136 | 136 |
| 137 PrefServiceMockBuilder builder; | 137 PrefServiceMockBuilder builder; |
| 138 builder.WithUserPrefs(user_prefs); | 138 builder.WithUserPrefs(user_prefs); |
| 139 scoped_refptr<PrefRegistrySyncable> registry(new PrefRegistrySyncable); | 139 scoped_refptr<user_prefs::PrefRegistrySyncable> registry( |
| 140 new user_prefs::PrefRegistrySyncable); |
| 140 PrefServiceSyncable* regular_prefs = builder.CreateSyncable(registry); | 141 PrefServiceSyncable* regular_prefs = builder.CreateSyncable(registry); |
| 141 | 142 |
| 142 chrome::RegisterUserPrefs(registry); | 143 chrome::RegisterUserPrefs(registry); |
| 143 | 144 |
| 144 builder.WithUserPrefs(otr_user_prefs); | 145 builder.WithUserPrefs(otr_user_prefs); |
| 145 scoped_refptr<PrefRegistrySyncable> otr_registry(new PrefRegistrySyncable); | 146 scoped_refptr<user_prefs::PrefRegistrySyncable> otr_registry( |
| 147 new user_prefs::PrefRegistrySyncable); |
| 146 PrefServiceSyncable* otr_prefs = builder.CreateSyncable(otr_registry); | 148 PrefServiceSyncable* otr_prefs = builder.CreateSyncable(otr_registry); |
| 147 | 149 |
| 148 chrome::RegisterUserPrefs(otr_registry); | 150 chrome::RegisterUserPrefs(otr_registry); |
| 149 | 151 |
| 150 TestingProfile::Builder profile_builder; | 152 TestingProfile::Builder profile_builder; |
| 151 profile_builder.SetPrefService(make_scoped_ptr(regular_prefs)); | 153 profile_builder.SetPrefService(make_scoped_ptr(regular_prefs)); |
| 152 scoped_ptr<TestingProfile> profile = profile_builder.Build(); | 154 scoped_ptr<TestingProfile> profile = profile_builder.Build(); |
| 153 | 155 |
| 154 TestingProfile::Builder otr_profile_builder; | 156 TestingProfile::Builder otr_profile_builder; |
| 155 otr_profile_builder.SetPrefService(make_scoped_ptr(otr_prefs)); | 157 otr_profile_builder.SetPrefService(make_scoped_ptr(otr_prefs)); |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 DictionaryValue* mutable_settings = update.Get(); | 435 DictionaryValue* mutable_settings = update.Get(); |
| 434 mutable_settings->SetWithoutPathExpansion("www.example.com,*", | 436 mutable_settings->SetWithoutPathExpansion("www.example.com,*", |
| 435 new base::DictionaryValue()); | 437 new base::DictionaryValue()); |
| 436 } | 438 } |
| 437 EXPECT_TRUE(observer.notification_received()); | 439 EXPECT_TRUE(observer.notification_received()); |
| 438 | 440 |
| 439 provider.ShutdownOnUIThread(); | 441 provider.ShutdownOnUIThread(); |
| 440 } | 442 } |
| 441 | 443 |
| 442 } // namespace content_settings | 444 } // namespace content_settings |
| OLD | NEW |