// 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. #ifndef CC_RASTER_PLAYBACK_IMAGE_PROVIDER_H_ #define CC_RASTER_PLAYBACK_IMAGE_PROVIDER_H_ #include "base/containers/flat_map.h" #include "base/memory/raw_ptr_exclusion.h" #include "cc/cc_export.h" #include "cc/paint/image_id.h" #include "cc/paint/image_provider.h" #include "cc/paint/target_color_params.h" #include "ui/gfx/color_space.h" namespace cc { class ImageDecodeCache; // PlaybackImageProvider is used to replace lazy generated PaintImages with // decoded images for raster from the ImageDecodeCache. class CC_EXPORT PlaybackImageProvider : public ImageProvider { … }; } // namespace cc #endif // CC_RASTER_PLAYBACK_IMAGE_PROVIDER_H_