#include "cc/paint/decode_stashing_image_provider.h"
#include <utility>
namespace cc {
DecodeStashingImageProvider::DecodeStashingImageProvider(
ImageProvider* source_provider)
: source_provider_(source_provider) {
DCHECK(source_provider_);
}
DecodeStashingImageProvider::~DecodeStashingImageProvider() = default;
ImageProvider::ScopedResult DecodeStashingImageProvider::GetRasterContent(
const DrawImage& draw_image) {
auto decode = source_provider_->GetRasterContent(draw_image);
if (!decode.needs_unlock())
return decode;
auto result = ScopedResult(decode.decoded_image());
decoded_images_.push_back(std::move(decode));
return result;
}
void DecodeStashingImageProvider::Reset() {
decoded_images_.clear();
}
}