| Index: src/core/SkRecordedDrawable.h
|
| diff --git a/src/core/SkRecordedDrawable.h b/src/core/SkRecordedDrawable.h
|
| index e9973b4b81e75c416d9000d4fd60af7483dc94c3..7e2d9bc599ee0a41d2ee75721c6b1c8f1850debe 100644
|
| --- a/src/core/SkRecordedDrawable.h
|
| +++ b/src/core/SkRecordedDrawable.h
|
| @@ -13,12 +13,11 @@
|
| class SkRecordedDrawable : public SkDrawable {
|
| public:
|
| SkRecordedDrawable(SkRecord* record, SkBBoxHierarchy* bbh, SkDrawableList* drawableList,
|
| - const SkRect& bounds, bool doSaveLayerInfo)
|
| + const SkRect& bounds)
|
| : fRecord(SkRef(record))
|
| , fBBH(SkSafeRef(bbh))
|
| , fDrawableList(drawableList) // we take ownership
|
| , fBounds(bounds)
|
| - , fDoSaveLayerInfo(doSaveLayerInfo)
|
| {}
|
|
|
| void flatten(SkWriteBuffer& buffer) const override;
|
| @@ -39,5 +38,4 @@ private:
|
| SkAutoTUnref<SkBBoxHierarchy> fBBH;
|
| SkAutoTDelete<SkDrawableList> fDrawableList;
|
| const SkRect fBounds;
|
| - const bool fDoSaveLayerInfo;
|
| };
|
|
|