Index: cc/picture_layer_tiling.h |
diff --git a/cc/picture_layer_tiling.h b/cc/picture_layer_tiling.h |
index cdc991cb86100fdc1a6eec525b3f6f654ee0e8dc..a59e75b843c2d74456b4b49085bfe083b24eef0a 100644 |
--- a/cc/picture_layer_tiling.h |
+++ b/cc/picture_layer_tiling.h |
@@ -21,13 +21,15 @@ namespace cc { |
class PictureLayerTiling; |
class PictureLayerTilingClient { |
- public: |
- // Create a tile at the given content_rect (in the contents scale of the |
- // tiling) This might return null if the client cannot create such a tile. |
- virtual scoped_refptr<Tile> CreateTile( |
- PictureLayerTiling* tiling, |
- gfx::Rect content_rect) = 0; |
- virtual void UpdatePile(Tile* tile) = 0; |
+ public: |
+ virtual ~PictureLayerTilingClient() { } |
+ |
+ // Create a tile at the given content_rect (in the contents scale of the |
+ // tiling) This might return null if the client cannot create such a tile. |
+ virtual scoped_refptr<Tile> CreateTile( |
+ PictureLayerTiling* tiling, |
jar (doing other things)
2013/02/01 03:41:07
You probably want to leave funky format alone (and
Paweł Hajdan Jr.
2013/02/01 10:12:43
Done. The formatting of this class is not even con
|
+ gfx::Rect content_rect) = 0; |
+ virtual void UpdatePile(Tile* tile) = 0; |
}; |
class CC_EXPORT PictureLayerTiling { |