OLD | NEW |
---|---|
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 <set> | |
9 | |
8 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
9 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/observer_list.h" | |
10 #include "cc/surfaces/surface_id.h" | 13 #include "cc/surfaces/surface_id.h" |
11 #include "cc/surfaces/surfaces_export.h" | 14 #include "cc/surfaces/surfaces_export.h" |
12 | 15 |
13 namespace cc { | 16 namespace cc { |
14 class CompositorFrame; | 17 class CompositorFrame; |
15 class Surface; | 18 class Surface; |
16 | 19 |
17 class CC_SURFACES_EXPORT SurfaceManager { | 20 class CC_SURFACES_EXPORT SurfaceManager { |
18 public: | 21 public: |
19 SurfaceManager(); | 22 SurfaceManager(); |
20 ~SurfaceManager(); | 23 ~SurfaceManager(); |
21 | 24 |
22 void RegisterSurface(Surface* surface); | 25 void RegisterSurface(Surface* surface); |
23 void DeregisterSurface(SurfaceId surface_id); | 26 void DeregisterSurface(SurfaceId surface_id); |
24 | 27 |
25 Surface* GetSurfaceForId(SurfaceId surface_id); | 28 Surface* GetSurfaceForId(SurfaceId surface_id); |
26 | 29 |
30 class CC_SURFACES_EXPORT SurfaceDamageObserver { | |
jamesr
2014/08/11 16:58:02
no export needed, this doesn't have any symbols to
| |
31 public: | |
32 virtual void OnSurfaceDamaged(SurfaceId surface_id) = 0; | |
33 }; | |
34 | |
35 void AddObserver(SurfaceDamageObserver* obs) { | |
36 observer_list_.AddObserver(obs); | |
37 } | |
38 | |
39 void RemoveObserver(SurfaceDamageObserver* obs) { | |
40 observer_list_.RemoveObserver(obs); | |
41 } | |
42 | |
43 void SurfaceModified(SurfaceId surface_id); | |
44 | |
27 private: | 45 private: |
28 typedef base::hash_map<SurfaceId, Surface*> SurfaceMap; | 46 typedef base::hash_map<SurfaceId, Surface*> SurfaceMap; |
29 SurfaceMap surface_map_; | 47 SurfaceMap surface_map_; |
48 ObserverList<SurfaceDamageObserver> observer_list_; | |
30 | 49 |
31 DISALLOW_COPY_AND_ASSIGN(SurfaceManager); | 50 DISALLOW_COPY_AND_ASSIGN(SurfaceManager); |
32 }; | 51 }; |
33 | 52 |
34 } // namespace cc | 53 } // namespace cc |
35 | 54 |
36 #endif // CC_SURFACES_SURFACE_MANAGER_H_ | 55 #endif // CC_SURFACES_SURFACE_MANAGER_H_ |
OLD | NEW |