diff options
author | vmpstr@chromium.org <vmpstr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 23:32:16 +0000 |
---|---|---|
committer | vmpstr@chromium.org <vmpstr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 23:32:16 +0000 |
commit | 36884de34df2466596fafc6102b7a0c17af47e51 (patch) | |
tree | f66a75cc0ac2102d0bb2d060190e80199e92ad0b /cc/picture_pile_impl.h | |
parent | 9e84e4d6dfc0e266449ab042d6dc6d480a27ae88 (diff) | |
download | chromium_src-36884de34df2466596fafc6102b7a0c17af47e51.zip chromium_src-36884de34df2466596fafc6102b7a0c17af47e51.tar.gz chromium_src-36884de34df2466596fafc6102b7a0c17af47e51.tar.bz2 |
cc: Pass totalPixelsRasterized instead of RenderingStats to picture pile raster
Small change that removes rendering stats from picture pile impl raster call,
since it's only used to record total pixels rendered. Instead, passing just
pixels rendered pointer should better reflect what's being collected in the call.
Review URL: https://chromiumcodereview.appspot.com/12208024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180822 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/picture_pile_impl.h')
-rw-r--r-- | cc/picture_pile_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/picture_pile_impl.h b/cc/picture_pile_impl.h index 3cd593d..2911977 100644 --- a/cc/picture_pile_impl.h +++ b/cc/picture_pile_impl.h @@ -34,7 +34,7 @@ class CC_EXPORT PicturePileImpl : public PicturePileBase { SkCanvas* canvas, gfx::Rect content_rect, float contents_scale, - RenderingStats* stats); + int64* total_pixels_rasterized); void GatherPixelRefs( gfx::Rect content_rect, |