| Index: cc/layers/layer_impl.cc
|
| diff --git a/cc/layers/layer_impl.cc b/cc/layers/layer_impl.cc
|
| index 0c6ddf5b599e91a32210bcd4b813da64cae51b48..929aecfc0a66b582509e8ad0df80931d9aac8174 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;
|
|
|