| Index: cc/layers/layer_impl.cc
|
| diff --git a/cc/layers/layer_impl.cc b/cc/layers/layer_impl.cc
|
| index 0353a787a3bbcb5ad75f93bcfb800cf23efad9ca..3f2947c5418e7b912e7bc59a8d79afd18d849b9f 100644
|
| --- a/cc/layers/layer_impl.cc
|
| +++ b/cc/layers/layer_impl.cc
|
| @@ -1044,6 +1044,11 @@ void LayerImpl::PassFrameTimingRequests(
|
| SetNeedsPushProperties();
|
| }
|
|
|
| +void LayerImpl::GatherFrameTimingRequestIds(std::vector<int64_t>* request_ids) {
|
| + for (const auto& request : frame_timing_requests_)
|
| + request_ids->push_back(request.id());
|
| +}
|
| +
|
| void LayerImpl::SetTransform(const gfx::Transform& transform) {
|
| if (transform_ == transform)
|
| return;
|
|
|