| Index: cc/playback/compositing_display_item.h
|
| diff --git a/cc/playback/compositing_display_item.h b/cc/playback/compositing_display_item.h
|
| index 2e1b74013b3446dfb7890724aff7b837cb27f56a..7722a073dc199610697b14789de9d8bef9d4cfd5 100644
|
| --- a/cc/playback/compositing_display_item.h
|
| +++ b/cc/playback/compositing_display_item.h
|
| @@ -12,14 +12,14 @@
|
|
|
| #include "base/memory/ptr_util.h"
|
| #include "cc/base/cc_export.h"
|
| +#include "cc/paint/paint_canvas.h"
|
| +#include "cc/paint/paint_record.h"
|
| #include "cc/playback/display_item.h"
|
| #include "third_party/skia/include/core/SkColorFilter.h"
|
| #include "third_party/skia/include/core/SkRect.h"
|
| #include "third_party/skia/include/core/SkRefCnt.h"
|
| #include "ui/gfx/geometry/rect_f.h"
|
|
|
| -class SkCanvas;
|
| -
|
| namespace cc {
|
|
|
| class CC_EXPORT CompositingDisplayItem : public DisplayItem {
|
| @@ -33,8 +33,8 @@ class CC_EXPORT CompositingDisplayItem : public DisplayItem {
|
| ~CompositingDisplayItem() override;
|
|
|
| void ToProtobuf(proto::DisplayItem* proto) const override;
|
| - void Raster(SkCanvas* canvas,
|
| - SkPicture::AbortCallback* callback) const override;
|
| + void Raster(PaintCanvas* canvas,
|
| + PaintRecord::AbortCallback* callback) const override;
|
| void AsValueInto(const gfx::Rect& visual_rect,
|
| base::trace_event::TracedValue* array) const override;
|
|
|
| @@ -70,8 +70,8 @@ class CC_EXPORT EndCompositingDisplayItem : public DisplayItem {
|
| }
|
|
|
| void ToProtobuf(proto::DisplayItem* proto) const override;
|
| - void Raster(SkCanvas* canvas,
|
| - SkPicture::AbortCallback* callback) const override;
|
| + void Raster(PaintCanvas* canvas,
|
| + PaintRecord::AbortCallback* callback) const override;
|
| void AsValueInto(const gfx::Rect& visual_rect,
|
| base::trace_event::TracedValue* array) const override;
|
|
|
|
|