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

Side by Side Diff: cc/surfaces/surface_manager.h

Issue 590613002: Ensure SurfaceManager is only ever used from one thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | cc/surfaces/surface_manager.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CC_SURFACES_SURFACE_MANAGER_H_ 5 #ifndef CC_SURFACES_SURFACE_MANAGER_H_
6 #define CC_SURFACES_SURFACE_MANAGER_H_ 6 #define CC_SURFACES_SURFACE_MANAGER_H_
7 7
8 #include "base/containers/hash_tables.h" 8 #include "base/containers/hash_tables.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/observer_list.h" 10 #include "base/observer_list.h"
11 #include "base/threading/thread_checker.h"
11 #include "cc/surfaces/surface_damage_observer.h" 12 #include "cc/surfaces/surface_damage_observer.h"
12 #include "cc/surfaces/surface_id.h" 13 #include "cc/surfaces/surface_id.h"
13 #include "cc/surfaces/surfaces_export.h" 14 #include "cc/surfaces/surfaces_export.h"
14 15
15 namespace cc { 16 namespace cc {
16 class CompositorFrame; 17 class CompositorFrame;
17 class Surface; 18 class Surface;
18 19
19 class CC_SURFACES_EXPORT SurfaceManager { 20 class CC_SURFACES_EXPORT SurfaceManager {
20 public: 21 public:
(...skipping 12 matching lines...) Expand all
33 void RemoveObserver(SurfaceDamageObserver* obs) { 34 void RemoveObserver(SurfaceDamageObserver* obs) {
34 observer_list_.RemoveObserver(obs); 35 observer_list_.RemoveObserver(obs);
35 } 36 }
36 37
37 void SurfaceModified(SurfaceId surface_id); 38 void SurfaceModified(SurfaceId surface_id);
38 39
39 private: 40 private:
40 typedef base::hash_map<SurfaceId, Surface*> SurfaceMap; 41 typedef base::hash_map<SurfaceId, Surface*> SurfaceMap;
41 SurfaceMap surface_map_; 42 SurfaceMap surface_map_;
42 ObserverList<SurfaceDamageObserver> observer_list_; 43 ObserverList<SurfaceDamageObserver> observer_list_;
44 base::ThreadChecker thread_checker_;
43 45
44 DISALLOW_COPY_AND_ASSIGN(SurfaceManager); 46 DISALLOW_COPY_AND_ASSIGN(SurfaceManager);
45 }; 47 };
46 48
47 } // namespace cc 49 } // namespace cc
48 50
49 #endif // CC_SURFACES_SURFACE_MANAGER_H_ 51 #endif // CC_SURFACES_SURFACE_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | cc/surfaces/surface_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698