| Index: webkit/plugins/ppapi/ppb_graphics_2d_impl.cc
|
| diff --git a/webkit/plugins/ppapi/ppb_graphics_2d_impl.cc b/webkit/plugins/ppapi/ppb_graphics_2d_impl.cc
|
| index aaad035722715397e93259c93bf5d643a9168c3a..c7013d2afe46c73e97f0d134a3ca1fb4e84e13ce 100644
|
| --- a/webkit/plugins/ppapi/ppb_graphics_2d_impl.cc
|
| +++ b/webkit/plugins/ppapi/ppb_graphics_2d_impl.cc
|
| @@ -705,8 +705,7 @@ void PPB_Graphics2D_Impl::ExecutePaintImageData(PPB_ImageData_Impl* image,
|
| void PPB_Graphics2D_Impl::ExecuteScroll(const gfx::Rect& clip,
|
| int dx, int dy,
|
| gfx::Rect* invalidated_rect) {
|
| - gfx::ScrollCanvas(image_data_->GetCanvas(),
|
| - clip, gfx::Point(dx, dy));
|
| + gfx::ScrollCanvas(image_data_->GetCanvas(), clip, gfx::Vector2d(dx, dy));
|
| *invalidated_rect = clip;
|
| }
|
|
|
|
|