OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/fake_picture_layer_impl.h" | 5 #include "cc/test/fake_picture_layer_impl.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 #include "cc/resources/tile.h" | 8 #include "cc/tiles/tile.h" |
9 #include "cc/trees/layer_tree_impl.h" | 9 #include "cc/trees/layer_tree_impl.h" |
10 | 10 |
11 namespace cc { | 11 namespace cc { |
12 | 12 |
13 FakePictureLayerImpl::FakePictureLayerImpl( | 13 FakePictureLayerImpl::FakePictureLayerImpl( |
14 LayerTreeImpl* tree_impl, | 14 LayerTreeImpl* tree_impl, |
15 int id, | 15 int id, |
16 scoped_refptr<RasterSource> raster_source, | 16 scoped_refptr<RasterSource> raster_source, |
17 bool is_mask) | 17 bool is_mask) |
18 : PictureLayerImpl(tree_impl, | 18 : PictureLayerImpl(tree_impl, |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 | 237 |
238 return CountTilesRequired(&PictureLayerTiling::IsTileRequiredForDraw); | 238 return CountTilesRequired(&PictureLayerTiling::IsTileRequiredForDraw); |
239 } | 239 } |
240 | 240 |
241 void FakePictureLayerImpl::ReleaseResources() { | 241 void FakePictureLayerImpl::ReleaseResources() { |
242 PictureLayerImpl::ReleaseResources(); | 242 PictureLayerImpl::ReleaseResources(); |
243 ++release_resources_count_; | 243 ++release_resources_count_; |
244 } | 244 } |
245 | 245 |
246 } // namespace cc | 246 } // namespace cc |
OLD | NEW |