blob: 5550c05eea5c40df8ce26bec62e82e761bb0a178 [file] [log] [blame]
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/test/fake_picture_layer.h"
#include "cc/test/fake_picture_layer_impl.h"
namespace cc {
FakePictureLayer::FakePictureLayer(ContentLayerClient* client)
: PictureLayer(client) {
SetBounds(gfx::Size(1, 1));
SetIsDrawable(true);
}
FakePictureLayer::FakePictureLayer(ContentLayerClient* client,
std::unique_ptr<RecordingSource> source)
: PictureLayer(client, std::move(source)) {
SetBounds(gfx::Size(1, 1));
SetIsDrawable(true);
}
FakePictureLayer::~FakePictureLayer() = default;
std::unique_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl(
LayerTreeImpl* tree_impl) {
auto layer_impl = FakePictureLayerImpl::Create(tree_impl, id());
if (!fixed_tile_size_.IsEmpty())
layer_impl->set_fixed_tile_size(fixed_tile_size_);
return layer_impl;
}
bool FakePictureLayer::Update() {
bool updated = PictureLayer::Update();
update_count_++;
return updated || always_update_resources_;
}
} // namespace cc