Can we remove this flag to picture-recording?

Change-Id: I08b75bee4d86b8539ee4374c699a3a1003b67784
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/311725
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
diff --git a/bench/RecordingBench.cpp b/bench/RecordingBench.cpp
index a6ca117..1050348 100644
--- a/bench/RecordingBench.cpp
+++ b/bench/RecordingBench.cpp
@@ -12,8 +12,8 @@
 PictureCentricBench::PictureCentricBench(const char* name, const SkPicture* pic) : fName(name) {
     // Flatten the source picture in case it's trivially nested (useless for timing).
     SkPictureRecorder rec;
-    pic->playback(rec.beginRecording(pic->cullRect(), nullptr,
-                                     SkPictureRecorder::kPlaybackDrawPicture_RecordFlag));
+    pic->playback(rec.beginRecording(pic->cullRect(), nullptr /*,
+                                     SkPictureRecorder::kPlaybackDrawPicture_RecordFlag*/));
     fSrc = rec.finishRecordingAsPicture();
 }