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

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

Issue 2068413002: cc: Remove fixed raster scale, stop rasterizing with will-change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 6 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_impl.cc ('k') | cc/trees/proxy_common.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 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"
(...skipping 14 matching lines...) Expand all
25 struct CC_EXPORT BeginMainFrameAndCommitState { 25 struct CC_EXPORT BeginMainFrameAndCommitState {
26 BeginMainFrameAndCommitState(); 26 BeginMainFrameAndCommitState();
27 ~BeginMainFrameAndCommitState(); 27 ~BeginMainFrameAndCommitState();
28 28
29 unsigned int begin_frame_id = 0; 29 unsigned int begin_frame_id = 0;
30 BeginFrameArgs begin_frame_args; 30 BeginFrameArgs begin_frame_args;
31 std::unique_ptr<BeginFrameCallbackList> begin_frame_callbacks; 31 std::unique_ptr<BeginFrameCallbackList> begin_frame_callbacks;
32 std::unique_ptr<ScrollAndScaleSet> scroll_info; 32 std::unique_ptr<ScrollAndScaleSet> scroll_info;
33 size_t memory_allocation_limit_bytes = 0; 33 size_t memory_allocation_limit_bytes = 0;
34 bool evicted_ui_resources = false; 34 bool evicted_ui_resources = false;
35 bool has_fixed_raster_scale_blurry_content = false;
36 bool has_fixed_raster_scale_potential_performance_regression = false;
37 35
38 void ToProtobuf(proto::BeginMainFrameAndCommitState* proto) const; 36 void ToProtobuf(proto::BeginMainFrameAndCommitState* proto) const;
39 void FromProtobuf(const proto::BeginMainFrameAndCommitState& proto); 37 void FromProtobuf(const proto::BeginMainFrameAndCommitState& proto);
40 }; 38 };
41 39
42 } // namespace cc 40 } // namespace cc
43 41
44 #endif // CC_TREES_PROXY_COMMON_H_ 42 #endif // CC_TREES_PROXY_COMMON_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | cc/trees/proxy_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698