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

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

Issue 2852163002: cc: framesink_manager* => frame_sink_manager* (Closed)
Patch Set: Created 3 years, 7 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 | « cc/surfaces/surface_factory_unittest.cc ('k') | cc/surfaces/surface_manager_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 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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <list> 10 #include <list>
11 #include <memory> 11 #include <memory>
12 #include <unordered_map> 12 #include <unordered_map>
13 #include <unordered_set> 13 #include <unordered_set>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
19 #include "base/observer_list.h" 19 #include "base/observer_list.h"
20 #include "base/threading/thread_checker.h" 20 #include "base/threading/thread_checker.h"
21 #include "cc/surfaces/frame_sink_id.h" 21 #include "cc/surfaces/frame_sink_id.h"
22 #include "cc/surfaces/framesink_manager.h" 22 #include "cc/surfaces/frame_sink_manager.h"
23 #include "cc/surfaces/surface_dependency_tracker.h" 23 #include "cc/surfaces/surface_dependency_tracker.h"
24 #include "cc/surfaces/surface_id.h" 24 #include "cc/surfaces/surface_id.h"
25 #include "cc/surfaces/surface_observer.h" 25 #include "cc/surfaces/surface_observer.h"
26 #include "cc/surfaces/surface_reference.h" 26 #include "cc/surfaces/surface_reference.h"
27 #include "cc/surfaces/surface_reference_factory.h" 27 #include "cc/surfaces/surface_reference_factory.h"
28 #include "cc/surfaces/surface_sequence.h" 28 #include "cc/surfaces/surface_sequence.h"
29 #include "cc/surfaces/surfaces_export.h" 29 #include "cc/surfaces/surfaces_export.h"
30 30
31 #if DCHECK_IS_ON() 31 #if DCHECK_IS_ON()
32 #include <iosfwd> 32 #include <iosfwd>
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 std::unique_ptr<SurfaceDependencyTracker> dependency_tracker_; 279 std::unique_ptr<SurfaceDependencyTracker> dependency_tracker_;
280 280
281 base::WeakPtrFactory<SurfaceManager> weak_factory_; 281 base::WeakPtrFactory<SurfaceManager> weak_factory_;
282 282
283 DISALLOW_COPY_AND_ASSIGN(SurfaceManager); 283 DISALLOW_COPY_AND_ASSIGN(SurfaceManager);
284 }; 284 };
285 285
286 } // namespace cc 286 } // namespace cc
287 287
288 #endif // CC_SURFACES_SURFACE_MANAGER_H_ 288 #endif // CC_SURFACES_SURFACE_MANAGER_H_
OLDNEW
« no previous file with comments | « cc/surfaces/surface_factory_unittest.cc ('k') | cc/surfaces/surface_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698