| Index: cc/resources/picture.h
|
| diff --git a/cc/resources/picture.h b/cc/resources/picture.h
|
| index 3cb67910efe2716cee31335e7b1f1352fd60b438..b8bb1a512d2d061d5c30cdd0c3dbb36bba2ab1fa 100644
|
| --- a/cc/resources/picture.h
|
| +++ b/cc/resources/picture.h
|
| @@ -24,7 +24,7 @@ class AnalysisCanvas;
|
| namespace cc {
|
|
|
| class ContentLayerClient;
|
| -struct RenderingStats;
|
| +struct RenderingStatsInstrumentation;
|
|
|
| class CC_EXPORT Picture
|
| : public base::RefCountedThreadSafe<Picture> {
|
| @@ -43,8 +43,9 @@ class CC_EXPORT Picture
|
|
|
| // Record a paint operation. To be able to safely use this SkPicture for
|
| // playback on a different thread this can only be called once.
|
| - void Record(ContentLayerClient*, RenderingStats*,
|
| - const SkTileGridPicture::TileGridInfo& tile_grid_info);
|
| + void Record(ContentLayerClient* painter,
|
| + RenderingStatsInstrumentation* stats_instrumentation,
|
| + const SkTileGridPicture::TileGridInfo& tile_grid_info);
|
|
|
| // Has Record() been called yet?
|
| bool HasRecording() const { return picture_.get() != NULL; }
|
|
|