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 "components/prefs/mock_pref_change_callback.h" | 9 #include "components/prefs/mock_pref_change_callback.h" |
10 #include "components/prefs/pref_notifier_impl.h" | 10 #include "components/prefs/pref_notifier_impl.h" |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 virtual ~MockPrefNotifier() {} | 52 virtual ~MockPrefNotifier() {} |
53 | 53 |
54 MOCK_METHOD1(FireObservers, void(const std::string& path)); | 54 MOCK_METHOD1(FireObservers, void(const std::string& path)); |
55 | 55 |
56 size_t CountObserver(const std::string& path, PrefObserver* obs) { | 56 size_t CountObserver(const std::string& path, PrefObserver* obs) { |
57 PrefObserverMap::const_iterator observer_iterator = | 57 PrefObserverMap::const_iterator observer_iterator = |
58 pref_observers()->find(path); | 58 pref_observers()->find(path); |
59 if (observer_iterator == pref_observers()->end()) | 59 if (observer_iterator == pref_observers()->end()) |
60 return false; | 60 return false; |
61 | 61 |
62 PrefObserverList* observer_list = observer_iterator->second; | 62 PrefObserverList* observer_list = observer_iterator->second.get(); |
63 PrefObserverList::Iterator it(observer_list); | 63 PrefObserverList::Iterator it(observer_list); |
64 PrefObserver* existing_obs; | 64 PrefObserver* existing_obs; |
65 size_t count = 0; | 65 size_t count = 0; |
66 while ((existing_obs = it.GetNext()) != NULL) { | 66 while ((existing_obs = it.GetNext()) != NULL) { |
67 if (existing_obs == obs) | 67 if (existing_obs == obs) |
68 count++; | 68 count++; |
69 } | 69 } |
70 | 70 |
71 return count; | 71 return count; |
72 } | 72 } |
(...skipping 140 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 |