diff options
author | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-28 01:34:23 +0000 |
---|---|---|
committer | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-28 01:34:23 +0000 |
commit | 9d4f41f8736543f85752ea4a8f8d0fb709c1eb1c (patch) | |
tree | 6bd583ba9641f1a2ca0ad2a654b3ef0eaed86091 /cc/test/fake_content_layer.cc | |
parent | bd78698c1116e009d8219fa514ba9a7cae40f96e (diff) | |
download | chromium_src-9d4f41f8736543f85752ea4a8f8d0fb709c1eb1c.zip chromium_src-9d4f41f8736543f85752ea4a8f8d0fb709c1eb1c.tar.gz chromium_src-9d4f41f8736543f85752ea4a8f8d0fb709c1eb1c.tar.bz2 |
cc: Switch RenderingStats collection in Layer::Update() to RenderingStatsInstrumentation
This change switches all of the remaining RenderingStats collection in
composited mode to use RenderinStatsInstrumentation.
BUG=181319
Review URL: https://chromiumcodereview.appspot.com/12426024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191086 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_content_layer.cc')
-rw-r--r-- | cc/test/fake_content_layer.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cc/test/fake_content_layer.cc b/cc/test/fake_content_layer.cc index 384521c..a30ea95 100644 --- a/cc/test/fake_content_layer.cc +++ b/cc/test/fake_content_layer.cc @@ -25,9 +25,8 @@ scoped_ptr<LayerImpl> FakeContentLayer::CreateLayerImpl( } void FakeContentLayer::Update(ResourceUpdateQueue* queue, - const OcclusionTracker* occlusion, - RenderingStats* stats) { - ContentLayer::Update(queue, occlusion, stats); + const OcclusionTracker* occlusion) { + ContentLayer::Update(queue, occlusion); update_count_++; } |