| Index: cc/resources/display_item_list.h
|
| diff --git a/cc/resources/display_item_list.h b/cc/resources/display_item_list.h
|
| index 39694d72a1dba7ed8d5ecd444bc597a50941a5b4..e16b8b8b997641afbb62c33b13fa2385ebc541ed 100644
|
| --- a/cc/resources/display_item_list.h
|
| +++ b/cc/resources/display_item_list.h
|
| @@ -11,8 +11,6 @@
|
| #include "cc/base/cc_export.h"
|
| #include "cc/base/scoped_ptr_vector.h"
|
| #include "cc/resources/display_item.h"
|
| -#include "skia/ext/refptr.h"
|
| -#include "third_party/skia/include/core/SkPicture.h"
|
| #include "ui/gfx/geometry/rect.h"
|
|
|
| class SkCanvas;
|
| @@ -34,8 +32,6 @@
|
| void set_layer_rect(gfx::Rect layer_rect) { layer_rect_ = layer_rect; }
|
| gfx::Rect layer_rect() const { return layer_rect_; }
|
|
|
| - void CreateAndCacheSkPicture();
|
| -
|
| bool IsSuitableForGpuRasterization() const;
|
| int ApproximateOpCount() const;
|
| size_t PictureMemoryUsage() const;
|
| @@ -48,8 +44,6 @@
|
| DisplayItemList();
|
| ~DisplayItemList();
|
| ScopedPtrVector<DisplayItem> items_;
|
| - skia::RefPtr<SkPicture> picture_;
|
| -
|
| gfx::Rect layer_rect_;
|
| bool is_suitable_for_gpu_rasterization_;
|
| int approximate_op_count_;
|
|
|