diff options
author | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-27 02:31:03 +0000 |
---|---|---|
committer | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-27 02:31:03 +0000 |
commit | 944314aa4ab8aa1dbba22a6dbdcfdf96cce20352 (patch) | |
tree | ccf648588bf8e3694f536290e95dbf1c646d8aff /cc/test/fake_content_layer.cc | |
parent | d461f62c56a00d085fab0072182658a1278eec4d (diff) | |
download | chromium_src-944314aa4ab8aa1dbba22a6dbdcfdf96cce20352.zip chromium_src-944314aa4ab8aa1dbba22a6dbdcfdf96cce20352.tar.gz chromium_src-944314aa4ab8aa1dbba22a6dbdcfdf96cce20352.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@190817 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_++; } |