| Index: cc/resources/picture_pile_impl.cc
|
| diff --git a/cc/resources/picture_pile_impl.cc b/cc/resources/picture_pile_impl.cc
|
| index bb467474f8dc3ba99bf5980c41cb38edddacbb80..2b9d094db1bf7e7ece5e04c15723a07082cccb4e 100644
|
| --- a/cc/resources/picture_pile_impl.cc
|
| +++ b/cc/resources/picture_pile_impl.cc
|
| @@ -348,10 +348,7 @@ skia::RefPtr<SkPicture> PicturePileImpl::GetFlattenedPicture() {
|
| gfx::Rect tiling_rect(tiling_.tiling_rect());
|
| SkPictureRecorder recorder;
|
| SkCanvas* canvas =
|
| - recorder.beginRecording(tiling_rect.width(),
|
| - tiling_rect.height(),
|
| - NULL,
|
| - SkPicture::kUsePathBoundsForClip_RecordingFlag);
|
| + recorder.beginRecording(tiling_rect.width(), tiling_rect.height());
|
| if (!tiling_rect.IsEmpty())
|
| RasterToBitmap(canvas, tiling_rect, 1.0, NULL);
|
| skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording());
|
|
|