// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/paint/decode_stashing_image_provider.h" #include <utility> namespace cc { DecodeStashingImageProvider::DecodeStashingImageProvider( ImageProvider* source_provider) : … { … } DecodeStashingImageProvider::~DecodeStashingImageProvider() = default; ImageProvider::ScopedResult DecodeStashingImageProvider::GetRasterContent( const DrawImage& draw_image) { … } void DecodeStashingImageProvider::Reset() { … } } // namespace cc