Remove dead flag from SkPictureRecorder

With the Chrome CL (https://codereview.chromium.org/2149533003/ (Remove use of unsupported Skia flag)) landed, this should be good to go.

GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2152943002

Review-Url: https://codereview.chromium.org/2152943002
This commit is contained in:
robertphillips 2016-07-14 13:44:14 -07:00 committed by Commit bot
parent 64bbad360f
commit 4c7e117b69

View File

@ -31,13 +31,9 @@ public:
~SkPictureRecorder(); ~SkPictureRecorder();
enum RecordFlags { enum RecordFlags {
#ifdef SK_SUPPORT_LEGACY_COMPUTESAVELAYER_FLAG
kComputeSaveLayerInfo_RecordFlag = 1 << 0,
#endif
// If you call drawPicture() or drawDrawable() on the recording canvas, this flag forces // If you call drawPicture() or drawDrawable() on the recording canvas, this flag forces
// that object to playback its contents immediately rather than reffing the object. // that object to playback its contents immediately rather than reffing the object.
kPlaybackDrawPicture_RecordFlag = 1 << 1, kPlaybackDrawPicture_RecordFlag = 1 << 0,
}; };
enum FinishFlags { enum FinishFlags {