Commit 198019bc authored by Mike Reed's avatar Mike Reed Committed by Commit Bot

fix another call-site for beginRecording

... removing unused enum parameter

Amends previous CL:
https://chromium-review.googlesource.com/c/chromium/src/+/2367441

Change-Id: Id36d21a264a32801dc09253112180bd2d1f6aaaa
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367987Reviewed-by: default avatarFlorin Malita <fmalita@chromium.org>
Reviewed-by: default avatarVasiliy Telezhnikov <vasilyt@chromium.org>
Commit-Queue: Mike Reed <reed@google.com>
Cr-Commit-Position: refs/heads/master@{#800562}
parent 7e9c0c4a
...@@ -421,7 +421,7 @@ sk_sp<SkPicture> BrowserViewRenderer::CapturePicture(int width, ...@@ -421,7 +421,7 @@ sk_sp<SkPicture> BrowserViewRenderer::CapturePicture(int width,
} }
SkPictureRecorder recorder; SkPictureRecorder recorder;
SkCanvas* rec_canvas = recorder.beginRecording(width, height, NULL, 0); SkCanvas* rec_canvas = recorder.beginRecording(width, height);
if (compositor_) { if (compositor_) {
{ {
// Reset scroll back to the origin, will go back to the old // Reset scroll back to the origin, will go back to the old
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment