OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/resources/drawing_display_item.h" | 5 #include "cc/resources/drawing_display_item.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "third_party/skia/include/core/SkCanvas.h" | 8 #include "third_party/skia/include/core/SkCanvas.h" |
| 9 #include "third_party/skia/include/core/SkDrawPictureCallback.h" |
9 #include "third_party/skia/include/core/SkMatrix.h" | 10 #include "third_party/skia/include/core/SkMatrix.h" |
10 #include "third_party/skia/include/core/SkPicture.h" | 11 #include "third_party/skia/include/core/SkPicture.h" |
11 #include "third_party/skia/include/utils/SkPictureUtils.h" | 12 #include "third_party/skia/include/utils/SkPictureUtils.h" |
12 | 13 |
13 namespace cc { | 14 namespace cc { |
14 | 15 |
15 DrawingDisplayItem::DrawingDisplayItem(skia::RefPtr<SkPicture> picture, | 16 DrawingDisplayItem::DrawingDisplayItem(skia::RefPtr<SkPicture> picture, |
16 gfx::PointF location) | 17 gfx::PointF location) |
17 : picture_(picture), location_(location) { | 18 : picture_(picture), location_(location) { |
18 } | 19 } |
(...skipping 19 matching lines...) Expand all Loading... |
38 int DrawingDisplayItem::ApproximateOpCount() const { | 39 int DrawingDisplayItem::ApproximateOpCount() const { |
39 return picture_->approximateOpCount() + sizeof(gfx::PointF); | 40 return picture_->approximateOpCount() + sizeof(gfx::PointF); |
40 } | 41 } |
41 | 42 |
42 size_t DrawingDisplayItem::PictureMemoryUsage() const { | 43 size_t DrawingDisplayItem::PictureMemoryUsage() const { |
43 DCHECK(picture_); | 44 DCHECK(picture_); |
44 return SkPictureUtils::ApproximateBytesUsed(picture_.get()); | 45 return SkPictureUtils::ApproximateBytesUsed(picture_.get()); |
45 } | 46 } |
46 | 47 |
47 } // namespace cc | 48 } // namespace cc |
OLD | NEW |