| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <stddef.h> |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/prefs/mock_pref_change_callback.h" | 9 #include "base/prefs/mock_pref_change_callback.h" |
| 10 #include "base/prefs/pref_notifier_impl.h" | 10 #include "base/prefs/pref_notifier_impl.h" |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 EXPECT_CALL(obs2_, OnPreferenceChanged(&pref_service_, kChangedPref)); | 213 EXPECT_CALL(obs2_, OnPreferenceChanged(&pref_service_, kChangedPref)); |
| 214 notifier.OnPreferenceChanged(kChangedPref); | 214 notifier.OnPreferenceChanged(kChangedPref); |
| 215 Mock::VerifyAndClearExpectations(&obs1_); | 215 Mock::VerifyAndClearExpectations(&obs1_); |
| 216 Mock::VerifyAndClearExpectations(&obs2_); | 216 Mock::VerifyAndClearExpectations(&obs2_); |
| 217 | 217 |
| 218 notifier.RemovePrefObserver(kChangedPref, &obs2_); | 218 notifier.RemovePrefObserver(kChangedPref, &obs2_); |
| 219 notifier.RemovePrefObserver(kUnchangedPref, &obs2_); | 219 notifier.RemovePrefObserver(kUnchangedPref, &obs2_); |
| 220 } | 220 } |
| 221 | 221 |
| 222 } // namespace | 222 } // namespace |
| OLD | NEW |