OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "cc/test/fake_content_layer_impl.h" |
| 6 |
| 7 namespace cc { |
| 8 |
| 9 FakeContentLayerImpl::FakeContentLayerImpl(LayerTreeImpl* tree_impl, int id) |
| 10 : TiledLayerImpl(tree_impl, id), |
| 11 lost_output_surface_count_(0) { |
| 12 } |
| 13 |
| 14 FakeContentLayerImpl::~FakeContentLayerImpl() {} |
| 15 |
| 16 bool FakeContentLayerImpl::HaveResourceForTileAt(int i, int j) { |
| 17 return hasResourceIdForTileAt(i, j); |
| 18 } |
| 19 |
| 20 void FakeContentLayerImpl::didLoseOutputSurface() { |
| 21 ++lost_output_surface_count_; |
| 22 } |
| 23 |
| 24 } // namespace cc |
OLD | NEW |