Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: cc/test/fake_content_layer.cc

Issue 85143002: Dirty rects always contain full tiles with delegated rendering. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed broken test due to this patch Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/prioritized_resource.h" 7 #include "cc/resources/prioritized_resource.h"
8 #include "cc/test/fake_content_layer_impl.h" 8 #include "cc/test/fake_content_layer_impl.h"
9 9
10 namespace cc { 10 namespace cc {
11 11
12 gfx::Rect FakeContentLayerUpdater::content_rect() const {
13 return ContentLayerUpdater::content_rect();
14 }
15
12 FakeContentLayer::FakeContentLayer(ContentLayerClient* client) 16 FakeContentLayer::FakeContentLayer(ContentLayerClient* client)
13 : ContentLayer(client), 17 : ContentLayer(client),
14 update_count_(0), 18 update_count_(0),
15 push_properties_count_(0), 19 push_properties_count_(0),
16 output_surface_created_count_(0), 20 output_surface_created_count_(0),
17 always_update_resources_(false) { 21 always_update_resources_(false) {
18 SetAnchorPoint(gfx::PointF(0.f, 0.f)); 22 SetAnchorPoint(gfx::PointF(0.f, 0.f));
19 SetBounds(gfx::Size(1, 1)); 23 SetBounds(gfx::Size(1, 1));
20 SetIsDrawable(true); 24 SetIsDrawable(true);
21 } 25 }
22 26
23 FakeContentLayer::~FakeContentLayer() {} 27 FakeContentLayer::~FakeContentLayer() {}
24 28
25 scoped_ptr<LayerImpl> FakeContentLayer::CreateLayerImpl( 29 scoped_ptr<LayerImpl> FakeContentLayer::CreateLayerImpl(
26 LayerTreeImpl* tree_impl) { 30 LayerTreeImpl* tree_impl) {
27 return FakeContentLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); 31 return FakeContentLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>();
28 } 32 }
29 33
34 FakeContentLayerUpdater *FakeContentLayer::Updater() const {
35 return (reinterpret_cast<FakeContentLayerUpdater*>(ContentLayer::Updater()));
danakj 2013/12/02 15:06:52 this should be a static_cast, no?
36 }
37
30 bool FakeContentLayer::Update(ResourceUpdateQueue* queue, 38 bool FakeContentLayer::Update(ResourceUpdateQueue* queue,
31 const OcclusionTracker* occlusion) { 39 const OcclusionTracker* occlusion) {
32 bool updated = ContentLayer::Update(queue, occlusion); 40 bool updated = ContentLayer::Update(queue, occlusion);
33 update_count_++; 41 update_count_++;
34 return updated || always_update_resources_; 42 return updated || always_update_resources_;
35 } 43 }
36 44
37 void FakeContentLayer::PushPropertiesTo(LayerImpl* layer) { 45 void FakeContentLayer::PushPropertiesTo(LayerImpl* layer) {
38 ContentLayer::PushPropertiesTo(layer); 46 ContentLayer::PushPropertiesTo(layer);
39 push_properties_count_++; 47 push_properties_count_++;
40 } 48 }
41 49
42 void FakeContentLayer::OnOutputSurfaceCreated() { 50 void FakeContentLayer::OnOutputSurfaceCreated() {
43 ContentLayer::OnOutputSurfaceCreated(); 51 ContentLayer::OnOutputSurfaceCreated();
44 output_surface_created_count_++; 52 output_surface_created_count_++;
45 } 53 }
46 54
47 bool FakeContentLayer::HaveBackingAt(int i, int j) { 55 bool FakeContentLayer::HaveBackingAt(int i, int j) {
48 const PrioritizedResource* resource = ResourceAtForTesting(i, j); 56 const PrioritizedResource* resource = ResourceAtForTesting(i, j);
49 return resource && resource->have_backing_texture(); 57 return resource && resource->have_backing_texture();
50 } 58 }
51 59
52 } // namespace cc 60 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698