| Index: views/view.cc | 
| diff --git a/views/view.cc b/views/view.cc | 
| index 2d4a60d712628d5c27e70db66090a72f1b17d1a5..1464067e85cf588d167126474daf9dc34be9256d 100644 | 
| --- a/views/view.cc | 
| +++ b/views/view.cc | 
| @@ -677,9 +677,9 @@ void View::Paint(gfx::Canvas* canvas) { | 
| // Note that the X (or left) position we pass to ClipRectInt takes into | 
| // consideration whether or not the view uses a right-to-left layout so that | 
| // we paint our view in its mirrored position if need be. | 
| -  if (!canvas->ClipRectInt(GetMirroredX(), y(), | 
| -                           width() - static_cast<int>(clip_x_), | 
| -                           height() - static_cast<int>(clip_y_))) { | 
| +  if (!canvas->ClipRectInt(gfx::Rect(GetMirroredX(), y(), | 
| +                                     width() - static_cast<int>(clip_x_), | 
| +                                     height() - static_cast<int>(clip_y_)))) { | 
| return; | 
| } | 
| // Non-empty clip, translate the graphics such that 0,0 corresponds to | 
|  |