// 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_PAINT_IMAGE_PROVIDER_H_ #define CC_PAINT_IMAGE_PROVIDER_H_ #include <optional> #include <utility> #include "base/functional/callback.h" #include "base/types/optional_util.h" #include "cc/paint/decoded_draw_image.h" #include "cc/paint/draw_image.h" #include "cc/paint/paint_export.h" #include "cc/paint/paint_op_buffer.h" namespace cc { class PaintImage; // Used to replace lazy generated PaintImages with decoded images for // rasterization. class CC_PAINT_EXPORT ImageProvider { … }; } // namespace cc #endif // CC_PAINT_IMAGE_PROVIDER_H_