diff options
author | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-21 16:38:43 +0000 |
---|---|---|
committer | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-21 16:38:43 +0000 |
commit | 372bad5f74bce22b5a09ecba66744079e64dc477 (patch) | |
tree | 28131cc00e2a26dd6c906448803f67b271bfaed6 /cc/test/fake_picture_layer_tiling_client.cc | |
parent | d4062c83ab5f22fad6a3ffc3f1945373106bf517 (diff) | |
download | chromium_src-372bad5f74bce22b5a09ecba66744079e64dc477.zip chromium_src-372bad5f74bce22b5a09ecba66744079e64dc477.tar.gz chromium_src-372bad5f74bce22b5a09ecba66744079e64dc477.tar.bz2 |
cc:: Add RenderingStatsInstrumentation to manage collection of RenderingStats
This change adds the class RenderingStatsInstrumentation that manages conditional
saving and thread-specific access to a private RenderingStats instance.
An instance of RenderingStatsRecorder is created on LayerTreeHost, which
passes references to LayerTreeHostImpl and TileManager. Access to reading
and writing on the internal RenderingStats instance is guarded by a lock.
All rendering stats saving in LayerTreeHost, Single-/ThreadProxy,
LayerTreeHostImpl and TileManager has been switched to use the
RenderingStatsInstrumentation. Stats collection within Layer::update() still
follows the original structure to keep this change small.
BUG=181319
NOTRY=true
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=189475
Review URL: https://chromiumcodereview.appspot.com/12519006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189621 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_picture_layer_tiling_client.cc')
-rw-r--r-- | cc/test/fake_picture_layer_tiling_client.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cc/test/fake_picture_layer_tiling_client.cc b/cc/test/fake_picture_layer_tiling_client.cc index 45c2640..2e96de6 100644 --- a/cc/test/fake_picture_layer_tiling_client.cc +++ b/cc/test/fake_picture_layer_tiling_client.cc @@ -20,7 +20,13 @@ class FakeInfinitePicturePileImpl : public PicturePileImpl { }; FakePictureLayerTilingClient::FakePictureLayerTilingClient() - : tile_manager_(&tile_manager_client_, NULL, 1, false, false, false), + : tile_manager_(&tile_manager_client_, + NULL, + 1, + false, + false, + false, + &stats_instrumentation_), pile_(new FakeInfinitePicturePileImpl()) { } |