Index: cc/playback/clip_display_item.h |
diff --git a/cc/playback/clip_display_item.h b/cc/playback/clip_display_item.h |
index 2af0fa33e9dcb237d5108303910389867cdc3d61..1f5634c2b9447ee2f0cedc2d7b9810e2ac804408 100644 |
--- a/cc/playback/clip_display_item.h |
+++ b/cc/playback/clip_display_item.h |
@@ -25,6 +25,8 @@ class CC_EXPORT ClipDisplayItem : public DisplayItem { |
void SetNew(gfx::Rect clip_rect, |
const std::vector<SkRRect>& rounded_clip_rects); |
+ void ToProtobuf(proto::DisplayItem* proto) override; |
+ void FromProtobuf(const proto::DisplayItem& proto) override; |
void Raster(SkCanvas* canvas, |
const gfx::Rect& canvas_target_playback_rect, |
SkPicture::AbortCallback* callback) const override; |
@@ -42,6 +44,8 @@ class CC_EXPORT EndClipDisplayItem : public DisplayItem { |
EndClipDisplayItem(); |
~EndClipDisplayItem() override; |
+ void ToProtobuf(proto::DisplayItem* proto) override; |
+ void FromProtobuf(const proto::DisplayItem& proto) override; |
void Raster(SkCanvas* canvas, |
const gfx::Rect& canvas_target_playback_rect, |
SkPicture::AbortCallback* callback) const override; |