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

Side by Side Diff: cc/blimp/compositor_proto_state.h

Issue 2362073002: cc/blimp: Add a LayerTreeHostRemote implementation. (Closed)
Patch Set: Rebase 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
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_BLIMP_COMPOSITOR_PROTO_STATE_H_
6 #define CC_BLIMP_COMPOSITOR_PROTO_STATE_H_
7
8 #include <vector>
9
10 #include "base/macros.h"
11 #include "cc/base/cc_export.h"
12
13 namespace cc {
14 class SwapPromise;
15
16 class CC_EXPORT CompositorProtoState {
17 public:
18 CompositorProtoState();
19 ~CompositorProtoState();
20
21 // The SwapPromises associated with this frame update.
22 std::vector<SwapPromise> swap_promises;
23
24 // TODO(khushalsagar): Add serialized representation of the layers, layer tree
25 // and display lists.
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(CompositorProtoState);
29 };
30
31 } // namespace cc
32
33 #endif // CC_BLIMP_COMPOSITOR_PROTO_STATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698