| Index: content/browser/renderer_host/backing_store_win.cc
|
| diff --git a/content/browser/renderer_host/backing_store_win.cc b/content/browser/renderer_host/backing_store_win.cc
|
| index 2c8d43588792fab5cdd1e50bf14461c821960cb9..a16bd80367843ba30d66ff6f65e6dc033a0a68b1 100644
|
| --- a/content/browser/renderer_host/backing_store_win.cc
|
| +++ b/content/browser/renderer_host/backing_store_win.cc
|
| @@ -143,7 +143,8 @@ void BackingStoreWin::PaintToBackingStore(
|
| gfx::Rect view_rect(size());
|
|
|
| for (size_t i = 0; i < copy_rects.size(); i++) {
|
| - gfx::Rect paint_rect = view_rect.Intersect(copy_rects[i]);
|
| + gfx::Rect paint_rect = view_rect;
|
| + paint_rect.Intersect(copy_rects[i]);
|
| CallStretchDIBits(hdc_,
|
| paint_rect.x(),
|
| paint_rect.y(),
|
|
|