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