| Index: cc/playback/clip_display_item.h
|
| diff --git a/cc/playback/clip_display_item.h b/cc/playback/clip_display_item.h
|
| index 320ea3184804b78422c940083f27c4936fe3646f..c66e4675750cbb1157b8b5cde00468335f3801e0 100644
|
| --- a/cc/playback/clip_display_item.h
|
| +++ b/cc/playback/clip_display_item.h
|
| @@ -30,7 +30,8 @@ class CC_EXPORT ClipDisplayItem : 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:
|
| gfx::Rect clip_rect_;
|
| @@ -47,7 +48,8 @@ class CC_EXPORT EndClipDisplayItem : 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
|
|
|