| 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/fake_content_layer.h" | 5 #include "cc/test/fake_content_layer.h" |
| 6 | 6 |
| 7 #include "cc/resources/content_layer_updater.h" | 7 #include "cc/resources/content_layer_updater.h" |
| 8 #include "cc/resources/prioritized_resource.h" | 8 #include "cc/resources/prioritized_resource.h" |
| 9 #include "cc/test/fake_content_layer_impl.h" | 9 #include "cc/test/fake_content_layer_impl.h" |
| 10 | 10 |
| 11 namespace cc { | 11 namespace cc { |
| 12 | 12 |
| 13 class FakeContentLayerUpdater : public ContentLayerUpdater { | 13 class FakeContentLayerUpdater : public ContentLayerUpdater { |
| 14 public: | 14 public: |
| 15 using ContentLayerUpdater::content_rect; | 15 using ContentLayerUpdater::content_rect; |
| 16 | 16 |
| 17 private: | 17 private: |
| 18 virtual ~FakeContentLayerUpdater() {} | 18 virtual ~FakeContentLayerUpdater() {} |
| 19 }; | 19 }; |
| 20 | 20 |
| 21 FakeContentLayer::FakeContentLayer(ContentLayerClient* client) | 21 FakeContentLayer::FakeContentLayer(ContentLayerClient* client) |
| 22 : ContentLayer(client), | 22 : ContentLayer(client), |
| 23 update_count_(0), | 23 update_count_(0), |
| 24 push_properties_count_(0), | 24 push_properties_count_(0), |
| 25 output_surface_created_count_(0), | 25 output_surface_created_count_(0), |
| 26 always_update_resources_(false) { | 26 always_update_resources_(false) { |
| 27 SetAnchorPoint(gfx::PointF(0.f, 0.f)); | |
| 28 SetBounds(gfx::Size(1, 1)); | 27 SetBounds(gfx::Size(1, 1)); |
| 29 SetIsDrawable(true); | 28 SetIsDrawable(true); |
| 30 } | 29 } |
| 31 | 30 |
| 32 FakeContentLayer::~FakeContentLayer() {} | 31 FakeContentLayer::~FakeContentLayer() {} |
| 33 | 32 |
| 34 scoped_ptr<LayerImpl> FakeContentLayer::CreateLayerImpl( | 33 scoped_ptr<LayerImpl> FakeContentLayer::CreateLayerImpl( |
| 35 LayerTreeImpl* tree_impl) { | 34 LayerTreeImpl* tree_impl) { |
| 36 return FakeContentLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); | 35 return FakeContentLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); |
| 37 } | 36 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 57 ContentLayer::OnOutputSurfaceCreated(); | 56 ContentLayer::OnOutputSurfaceCreated(); |
| 58 output_surface_created_count_++; | 57 output_surface_created_count_++; |
| 59 } | 58 } |
| 60 | 59 |
| 61 bool FakeContentLayer::HaveBackingAt(int i, int j) { | 60 bool FakeContentLayer::HaveBackingAt(int i, int j) { |
| 62 const PrioritizedResource* resource = ResourceAtForTesting(i, j); | 61 const PrioritizedResource* resource = ResourceAtForTesting(i, j); |
| 63 return resource && resource->have_backing_texture(); | 62 return resource && resource->have_backing_texture(); |
| 64 } | 63 } |
| 65 | 64 |
| 66 } // namespace cc | 65 } // namespace cc |
| OLD | NEW |