| Index: cc/playback/float_clip_display_item.h
|
| diff --git a/cc/playback/float_clip_display_item.h b/cc/playback/float_clip_display_item.h
|
| index 7f39ad6315680cac5230a38f9a9ef668015c0bf6..6233d3cebce044145c296b7b0f336aaea3539be7 100644
|
| --- a/cc/playback/float_clip_display_item.h
|
| +++ b/cc/playback/float_clip_display_item.h
|
| @@ -22,10 +22,8 @@ namespace cc {
|
| class CC_EXPORT FloatClipDisplayItem : public DisplayItem {
|
| public:
|
| explicit FloatClipDisplayItem(const gfx::RectF& clip_rect);
|
| - explicit FloatClipDisplayItem(const proto::DisplayItem& proto);
|
| ~FloatClipDisplayItem() override;
|
|
|
| - void ToProtobuf(proto::DisplayItem* proto) const override;
|
| void Raster(SkCanvas* canvas,
|
| SkPicture::AbortCallback* callback) const override;
|
| void AsValueInto(const gfx::Rect& visual_rect,
|
| @@ -43,14 +41,12 @@ class CC_EXPORT FloatClipDisplayItem : public DisplayItem {
|
| class CC_EXPORT EndFloatClipDisplayItem : public DisplayItem {
|
| public:
|
| EndFloatClipDisplayItem();
|
| - explicit EndFloatClipDisplayItem(const proto::DisplayItem& proto);
|
| ~EndFloatClipDisplayItem() override;
|
|
|
| static std::unique_ptr<EndFloatClipDisplayItem> Create() {
|
| return base::MakeUnique<EndFloatClipDisplayItem>();
|
| }
|
|
|
| - void ToProtobuf(proto::DisplayItem* proto) const override;
|
| void Raster(SkCanvas* canvas,
|
| SkPicture::AbortCallback* callback) const override;
|
| void AsValueInto(const gfx::Rect& visual_rect,
|
|
|