| Index: cc/tile.h
|
| diff --git a/cc/tile.h b/cc/tile.h
|
| index 1c988c2dc998e95910cb4de1493e23b793876bd8..6d4f27caa487f0cd0f73f582ffc30d189f2571ae 100644
|
| --- a/cc/tile.h
|
| +++ b/cc/tile.h
|
| @@ -61,6 +61,20 @@ class CC_EXPORT Tile : public base::RefCounted<Tile> {
|
| return managed_state_.resource->id();
|
| }
|
|
|
| + bool IsReadyToDraw() const;
|
| +
|
| + bool is_solid_color() const {
|
| + return managed_state_.picture_pile_analysis.is_solid_color();
|
| + }
|
| +
|
| + bool is_transparent() const {
|
| + return managed_state_.picture_pile_analysis.is_transparent();
|
| + }
|
| +
|
| + SkColor get_solid_color() const {
|
| + return managed_state_.picture_pile_analysis.get_solid_color();
|
| + }
|
| +
|
| const gfx::Rect& opaque_rect() const { return opaque_rect_; }
|
|
|
| bool contents_swizzled() const { return managed_state_.contents_swizzled; }
|
|
|