Index: cc/paint/drawing_display_item.cc |
diff --git a/cc/paint/drawing_display_item.cc b/cc/paint/drawing_display_item.cc |
index 4b3558efb8b37c806102556669895b9ba8b4be43..f8819c01e9864f1805cdc283ee70f7b2e31a14f0 100644 |
--- a/cc/paint/drawing_display_item.cc |
+++ b/cc/paint/drawing_display_item.cc |
@@ -10,9 +10,8 @@ namespace cc { |
DrawingDisplayItem::DrawingDisplayItem() : DisplayItem(DRAWING) {} |
-DrawingDisplayItem::DrawingDisplayItem(sk_sp<const PaintRecord> record, |
- const SkRect& bounds) |
- : DisplayItem(DRAWING), picture(std::move(record)), bounds(bounds) {} |
+DrawingDisplayItem::DrawingDisplayItem(sk_sp<const PaintRecord> record) |
+ : DisplayItem(DRAWING), picture(std::move(record)) {} |
DrawingDisplayItem::DrawingDisplayItem(const DrawingDisplayItem& item) |
: DisplayItem(DRAWING), picture(item.picture) {} |