This source file includes following definitions.
- always_update_resources_
- CreateLayerImpl
- Update
- PushPropertiesTo
#include "cc/test/fake_picture_layer.h"
#include "cc/test/fake_picture_layer_impl.h"
namespace cc {
FakePictureLayer::FakePictureLayer(ContentLayerClient* client)
: PictureLayer(client),
update_count_(0),
push_properties_count_(0),
always_update_resources_(false) {
SetAnchorPoint(gfx::PointF(0.f, 0.f));
SetBounds(gfx::Size(1, 1));
SetIsDrawable(true);
}
FakePictureLayer::~FakePictureLayer() {}
scoped_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl(
LayerTreeImpl* tree_impl) {
return FakePictureLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>();
}
bool FakePictureLayer::Update(ResourceUpdateQueue* queue,
const OcclusionTracker<Layer>* occlusion) {
bool updated = PictureLayer::Update(queue, occlusion);
update_count_++;
return updated || always_update_resources_;
}
void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) {
PictureLayer::PushPropertiesTo(layer);
push_properties_count_++;
}
}