Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Side by Side Diff: base/observer_list_threadsafe.h

Issue 2969006: Revert 52336 - More header cleanup:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/message_loop_proxy_impl_unittest.cc ('k') | base/weak_ptr_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « base/message_loop_proxy_impl_unittest.cc ('k') | base/weak_ptr_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698