| Index: cc/layer_tree_host_unittest.cc
|
| diff --git a/cc/layer_tree_host_unittest.cc b/cc/layer_tree_host_unittest.cc
|
| index bcad5b6993a690cb22622f5841700c92ba34dffc..7cb46baeb8940e884cceb8fd46a3dc971197835c 100644
|
| --- a/cc/layer_tree_host_unittest.cc
|
| +++ b/cc/layer_tree_host_unittest.cc
|
| @@ -795,7 +795,7 @@ public:
|
| int paintContentsCount() { return m_paintContentsCount; }
|
| void resetPaintContentsCount() { m_paintContentsCount = 0; }
|
|
|
| - virtual void update(ResourceUpdateQueue& queue, const OcclusionTracker* occlusion, RenderingStats& stats) OVERRIDE
|
| + virtual void update(ResourceUpdateQueue& queue, const OcclusionTracker* occlusion, RenderingStats* stats) OVERRIDE
|
| {
|
| ContentLayer::update(queue, occlusion, stats);
|
| m_paintContentsCount++;
|
| @@ -1477,7 +1477,7 @@ class EvictionTestLayer : public Layer {
|
| public:
|
| static scoped_refptr<EvictionTestLayer> create() { return make_scoped_refptr(new EvictionTestLayer()); }
|
|
|
| - virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE;
|
| + virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats*) OVERRIDE;
|
| virtual bool drawsContent() const OVERRIDE { return true; }
|
|
|
| virtual scoped_ptr<LayerImpl> createLayerImpl(LayerTreeImpl* treeImpl) OVERRIDE;
|
| @@ -1535,7 +1535,7 @@ void EvictionTestLayer::setTexturePriorities(const PriorityCalculator&)
|
| m_texture->setRequestPriority(PriorityCalculator::uiPriority(true));
|
| }
|
|
|
| -void EvictionTestLayer::update(ResourceUpdateQueue& queue, const OcclusionTracker*, RenderingStats&)
|
| +void EvictionTestLayer::update(ResourceUpdateQueue& queue, const OcclusionTracker*, RenderingStats*)
|
| {
|
| createTextureIfNeeded();
|
| if (!m_texture.get())
|
|
|