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 #ifndef BASE_PREFS_PREF_NOTIFIER_IMPL_H_ | 5 #ifndef BASE_PREFS_PREF_NOTIFIER_IMPL_H_ |
6 #define BASE_PREFS_PREF_NOTIFIER_IMPL_H_ | 6 #define BASE_PREFS_PREF_NOTIFIER_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 PrefObserverMap pref_observers_; | 66 PrefObserverMap pref_observers_; |
67 PrefInitObserverList init_observers_; | 67 PrefInitObserverList init_observers_; |
68 | 68 |
69 base::ThreadChecker thread_checker_; | 69 base::ThreadChecker thread_checker_; |
70 | 70 |
71 DISALLOW_COPY_AND_ASSIGN(PrefNotifierImpl); | 71 DISALLOW_COPY_AND_ASSIGN(PrefNotifierImpl); |
72 }; | 72 }; |
73 | 73 |
74 #endif // BASE_PREFS_PREF_NOTIFIER_IMPL_H_ | 74 #endif // BASE_PREFS_PREF_NOTIFIER_IMPL_H_ |
OLD | NEW |