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

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

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 years, 9 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/proxy.h ('k') | cc/trees/proxy_main.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_TREES_PROXY_COMMON_H_ 5 #ifndef CC_TREES_PROXY_COMMON_H_
6 #define CC_TREES_PROXY_COMMON_H_ 6 #define CC_TREES_PROXY_COMMON_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
11 #include "cc/base/cc_export.h" 11 #include "cc/cc_export.h"
12 #include "cc/output/begin_frame_args.h" 12 #include "cc/output/begin_frame_args.h"
13 #include "cc/trees/layer_tree_host_common.h" 13 #include "cc/trees/layer_tree_host_common.h"
14 14
15 namespace cc { 15 namespace cc {
16 16
17 using BeginFrameCallbackList = std::vector<base::Closure>; 17 using BeginFrameCallbackList = std::vector<base::Closure>;
18 18
19 struct CC_EXPORT BeginMainFrameAndCommitState { 19 struct CC_EXPORT BeginMainFrameAndCommitState {
20 BeginMainFrameAndCommitState(); 20 BeginMainFrameAndCommitState();
21 ~BeginMainFrameAndCommitState(); 21 ~BeginMainFrameAndCommitState();
22 22
23 unsigned int begin_frame_id = 0; 23 unsigned int begin_frame_id = 0;
24 BeginFrameArgs begin_frame_args; 24 BeginFrameArgs begin_frame_args;
25 std::unique_ptr<BeginFrameCallbackList> begin_frame_callbacks; 25 std::unique_ptr<BeginFrameCallbackList> begin_frame_callbacks;
26 std::unique_ptr<ScrollAndScaleSet> scroll_info; 26 std::unique_ptr<ScrollAndScaleSet> scroll_info;
27 size_t memory_allocation_limit_bytes = 0; 27 size_t memory_allocation_limit_bytes = 0;
28 bool evicted_ui_resources = false; 28 bool evicted_ui_resources = false;
29 std::vector<base::Closure> completed_image_decode_callbacks; 29 std::vector<base::Closure> completed_image_decode_callbacks;
30 }; 30 };
31 31
32 } // namespace cc 32 } // namespace cc
33 33
34 #endif // CC_TREES_PROXY_COMMON_H_ 34 #endif // CC_TREES_PROXY_COMMON_H_
OLDNEW
« no previous file with comments | « cc/trees/proxy.h ('k') | cc/trees/proxy_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698