OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/test/tiled_layer_test_common.h" | 5 #include "cc/test/tiled_layer_test_common.h" |
6 | 6 |
7 using cc::LayerTilingData; | 7 using cc::LayerTilingData; |
8 using cc::LayerUpdater; | 8 using cc::LayerUpdater; |
9 using cc::PriorityCalculator; | 9 using cc::PriorityCalculator; |
10 using cc::PrioritizedResource; | 10 using cc::PrioritizedResource; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 { | 66 { |
67 m_rectToInvalidate = rect; | 67 m_rectToInvalidate = rect; |
68 m_layer = layer; | 68 m_layer = layer; |
69 } | 69 } |
70 | 70 |
71 scoped_ptr<LayerUpdater::Resource> FakeLayerUpdater::createResource(PrioritizedR
esourceManager* manager) | 71 scoped_ptr<LayerUpdater::Resource> FakeLayerUpdater::createResource(PrioritizedR
esourceManager* manager) |
72 { | 72 { |
73 return scoped_ptr<LayerUpdater::Resource>(new Resource(this, PrioritizedReso
urce::create(manager))); | 73 return scoped_ptr<LayerUpdater::Resource>(new Resource(this, PrioritizedReso
urce::create(manager))); |
74 } | 74 } |
75 | 75 |
76 FakeTiledLayerImpl::FakeTiledLayerImpl(LayerTreeHostImpl* hostImpl, int id) | 76 FakeTiledLayerImpl::FakeTiledLayerImpl(LayerTreeImpl* treeImpl, int id) |
77 : TiledLayerImpl(hostImpl, id) | 77 : TiledLayerImpl(treeImpl, id) |
78 { | 78 { |
79 } | 79 } |
80 | 80 |
81 FakeTiledLayerImpl::~FakeTiledLayerImpl() | 81 FakeTiledLayerImpl::~FakeTiledLayerImpl() |
82 { | 82 { |
83 } | 83 } |
84 | 84 |
85 FakeTiledLayer::FakeTiledLayer(PrioritizedResourceManager* resourceManager) | 85 FakeTiledLayer::FakeTiledLayer(PrioritizedResourceManager* resourceManager) |
86 : TiledLayer() | 86 : TiledLayer() |
87 , m_fakeUpdater(make_scoped_refptr(new FakeLayerUpdater)) | 87 , m_fakeUpdater(make_scoped_refptr(new FakeLayerUpdater)) |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 { | 153 { |
154 return static_cast<float>(m_forcedContentBounds.height()) / bounds().height(
); | 154 return static_cast<float>(m_forcedContentBounds.height()) / bounds().height(
); |
155 } | 155 } |
156 | 156 |
157 void FakeTiledLayerWithScaledBounds::setContentsScale(float) | 157 void FakeTiledLayerWithScaledBounds::setContentsScale(float) |
158 { | 158 { |
159 NOTREACHED(); | 159 NOTREACHED(); |
160 } | 160 } |
161 | 161 |
162 } // namespace | 162 } // namespace |
OLD | NEW |