| Index: cc/layers/video_frame_provider_client_impl.cc
|
| diff --git a/cc/layers/video_frame_provider_client_impl.cc b/cc/layers/video_frame_provider_client_impl.cc
|
| index f2c5eb2627a9140831b433939e3a21268deb5416..5e9fd332b3917580bba1acc7b396b4473651104c 100644
|
| --- a/cc/layers/video_frame_provider_client_impl.cc
|
| +++ b/cc/layers/video_frame_provider_client_impl.cc
|
| @@ -151,17 +151,6 @@ void VideoFrameProviderClientImpl::DidReceiveFrame() {
|
| active_video_layer_->SetNeedsRedraw();
|
| }
|
|
|
| -void VideoFrameProviderClientImpl::DidUpdateMatrix(const float* matrix) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - stream_texture_matrix_ = gfx::Transform(
|
| - matrix[0], matrix[4], matrix[8], matrix[12],
|
| - matrix[1], matrix[5], matrix[9], matrix[13],
|
| - matrix[2], matrix[6], matrix[10], matrix[14],
|
| - matrix[3], matrix[7], matrix[11], matrix[15]);
|
| - if (active_video_layer_)
|
| - active_video_layer_->SetNeedsRedraw();
|
| -}
|
| -
|
| void VideoFrameProviderClientImpl::OnBeginFrame(const BeginFrameArgs& args) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| DCHECK(rendering_);
|
|
|