Chromium Code Reviews| 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 923b88d4af73f2d488f800ba278162d082ba5df5..047e158e5fe8e438fd5d3919a202183d898927a4 100644 |
| --- a/webkit/plugins/ppapi/ppb_graphics_2d_impl.cc |
| +++ b/webkit/plugins/ppapi/ppb_graphics_2d_impl.cc |
| @@ -708,7 +708,7 @@ 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)); |
| + clip, gfx::Vector2d(dx, dy)); |
|
danakj
2012/10/29 19:17:20
fits on one line
|
| *invalidated_rect = clip; |
| } |