| Index: mojo/services/surfaces/surfaces_impl.cc
|
| diff --git a/mojo/services/surfaces/surfaces_impl.cc b/mojo/services/surfaces/surfaces_impl.cc
|
| index 5316ea33d42ea027dee2821edbc119bb411d7ff5..ba1c0b08f5589851595d7f3087cbacaaa4907a34 100644
|
| --- a/mojo/services/surfaces/surfaces_impl.cc
|
| +++ b/mojo/services/surfaces/surfaces_impl.cc
|
| @@ -45,8 +45,9 @@ void SurfacesImpl::SubmitFrame(SurfaceIdPtr id, FramePtr frame_ptr) {
|
| << " should be namespace " << id_namespace_;
|
| return;
|
| }
|
| - factory_.SubmitFrame(
|
| - id.To<cc::SurfaceId>(), mojo::ConvertTo(frame_ptr), base::Closure());
|
| + factory_.SubmitFrame(id.To<cc::SurfaceId>(),
|
| + frame_ptr.To<scoped_ptr<cc::CompositorFrame> >(),
|
| + base::Closure());
|
| client_->FrameSubmitted();
|
| }
|
|
|
|
|