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

Side by Side Diff: cc/trees/surface_sequence_generator.h

Issue 2397103002: Move SurfaceSequenceGenerator => cc/surfaces (Closed)
Patch Set: Remove export Created 4 years, 2 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/trees/layer_tree_host_in_process.h ('k') | cc/trees/surface_sequence_generator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_TREES_SURFACE_SEQUENCE_GENERATOR_H_
6 #define CC_TREES_SURFACE_SEQUENCE_GENERATOR_H_
7
8 #include <stdint.h>
9
10 #include <tuple>
11
12 #include "base/macros.h"
13 #include "cc/base/cc_export.h"
14
15 #include "cc/surfaces/frame_sink_id.h"
16
17 namespace cc {
18 struct SurfaceSequence;
19
20 // Generates unique surface sequences for a surface client id.
21 class CC_EXPORT SurfaceSequenceGenerator {
22 public:
23 SurfaceSequenceGenerator();
24 ~SurfaceSequenceGenerator();
25
26 void set_frame_sink_id(const FrameSinkId& frame_sink_id) {
27 frame_sink_id_ = frame_sink_id;
28 }
29
30 SurfaceSequence CreateSurfaceSequence();
31
32 private:
33 FrameSinkId frame_sink_id_;
34 uint32_t next_surface_sequence_;
35
36 DISALLOW_COPY_AND_ASSIGN(SurfaceSequenceGenerator);
37 };
38
39 } // namespace cc
40
41 #endif // CC_TREES_SURFACE_SEQUENCE_GENERATOR_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_in_process.h ('k') | cc/trees/surface_sequence_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698