Index: cc/playback/clip_path_display_item.h |
diff --git a/cc/playback/clip_path_display_item.h b/cc/playback/clip_path_display_item.h |
index 6e4253909905e0a8b10bdec8d207892eed38132e..6f37ebea7f0fc92eba08a5c446ad8e75b65f54c8 100644 |
--- a/cc/playback/clip_path_display_item.h |
+++ b/cc/playback/clip_path_display_item.h |
@@ -27,7 +27,8 @@ class CC_EXPORT ClipPathDisplayItem : public DisplayItem { |
void Raster(SkCanvas* canvas, |
const gfx::Rect& canvas_target_playback_rect, |
SkPicture::AbortCallback* callback) const override; |
- void AsValueInto(base::trace_event::TracedValue* array) const override; |
+ void AsValueInto(const gfx::Rect& visual_rect, |
+ base::trace_event::TracedValue* array) const override; |
private: |
SkPath clip_path_; |
@@ -49,7 +50,8 @@ class CC_EXPORT EndClipPathDisplayItem : public DisplayItem { |
void Raster(SkCanvas* canvas, |
const gfx::Rect& canvas_target_playback_rect, |
SkPicture::AbortCallback* callback) const override; |
- void AsValueInto(base::trace_event::TracedValue* array) const override; |
+ void AsValueInto(const gfx::Rect& visual_rect, |
+ base::trace_event::TracedValue* array) const override; |
}; |
} // namespace cc |