| OLD | NEW |
| 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 "cc/base/cc_export.h" | 11 #include "cc/base/cc_export.h" |
| 11 #include "cc/output/begin_frame_args.h" | 12 #include "cc/output/begin_frame_args.h" |
| 12 #include "cc/trees/layer_tree_host_common.h" | 13 #include "cc/trees/layer_tree_host_common.h" |
| 13 | 14 |
| 14 namespace cc { | 15 namespace cc { |
| 15 | 16 |
| 16 namespace proto { | 17 namespace proto { |
| 17 class BeginMainFrameAndCommitState; | 18 class BeginMainFrameAndCommitState; |
| 18 } | 19 } |
| 19 | 20 |
| 20 class LayerTreeHost; | 21 class LayerTreeHost; |
| 21 | 22 |
| 23 using BeginFrameCallbackList = std::vector<base::Closure>; |
| 24 |
| 22 struct CC_EXPORT BeginMainFrameAndCommitState { | 25 struct CC_EXPORT BeginMainFrameAndCommitState { |
| 23 BeginMainFrameAndCommitState(); | 26 BeginMainFrameAndCommitState(); |
| 24 ~BeginMainFrameAndCommitState(); | 27 ~BeginMainFrameAndCommitState(); |
| 25 | 28 |
| 26 unsigned int begin_frame_id; | 29 unsigned int begin_frame_id; |
| 27 BeginFrameArgs begin_frame_args; | 30 BeginFrameArgs begin_frame_args; |
| 31 std::unique_ptr<BeginFrameCallbackList> begin_frame_callbacks; |
| 28 std::unique_ptr<ScrollAndScaleSet> scroll_info; | 32 std::unique_ptr<ScrollAndScaleSet> scroll_info; |
| 29 size_t memory_allocation_limit_bytes; | 33 size_t memory_allocation_limit_bytes; |
| 30 bool evicted_ui_resources; | 34 bool evicted_ui_resources; |
| 31 | 35 |
| 32 void ToProtobuf(proto::BeginMainFrameAndCommitState* proto) const; | 36 void ToProtobuf(proto::BeginMainFrameAndCommitState* proto) const; |
| 33 void FromProtobuf(const proto::BeginMainFrameAndCommitState& proto); | 37 void FromProtobuf(const proto::BeginMainFrameAndCommitState& proto); |
| 34 }; | 38 }; |
| 35 | 39 |
| 36 } // namespace cc | 40 } // namespace cc |
| 37 | 41 |
| 38 #endif // CC_TREES_PROXY_COMMON_H_ | 42 #endif // CC_TREES_PROXY_COMMON_H_ |
| OLD | NEW |