OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_OBSERVER_LIST_THREADSAFE_H_ | 5 #ifndef BASE_OBSERVER_LIST_THREADSAFE_H_ |
6 #define BASE_OBSERVER_LIST_THREADSAFE_H_ | 6 #define BASE_OBSERVER_LIST_THREADSAFE_H_ |
7 | 7 |
| 8 #include <algorithm> |
| 9 #include <map> |
8 #include <vector> | 10 #include <vector> |
9 #include <algorithm> | |
10 | 11 |
11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
12 #include "base/callback.h" | 13 #include "base/callback.h" |
13 #include "base/logging.h" | 14 #include "base/logging.h" |
14 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
15 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
16 #include "base/ref_counted.h" | 17 #include "base/ref_counted.h" |
17 #include "base/task.h" | 18 #include "base/task.h" |
18 | 19 |
19 /////////////////////////////////////////////////////////////////////////////// | 20 /////////////////////////////////////////////////////////////////////////////// |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 typedef std::map<MessageLoop*, ObserverList<ObserverType>*> ObserversListMap; | 193 typedef std::map<MessageLoop*, ObserverList<ObserverType>*> ObserversListMap; |
193 | 194 |
194 // These are marked mutable to facilitate having NotifyAll be const. | 195 // These are marked mutable to facilitate having NotifyAll be const. |
195 Lock list_lock_; // Protects the observer_lists_. | 196 Lock list_lock_; // Protects the observer_lists_. |
196 ObserversListMap observer_lists_; | 197 ObserversListMap observer_lists_; |
197 | 198 |
198 DISALLOW_COPY_AND_ASSIGN(ObserverListThreadSafe); | 199 DISALLOW_COPY_AND_ASSIGN(ObserverListThreadSafe); |
199 }; | 200 }; |
200 | 201 |
201 #endif // BASE_OBSERVER_LIST_THREADSAFE_H_ | 202 #endif // BASE_OBSERVER_LIST_THREADSAFE_H_ |
OLD | NEW |