// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_IPC_SERVICE_IMAGE_DECODE_ACCELERATOR_WORKER_H_ #define GPU_IPC_SERVICE_IMAGE_DECODE_ACCELERATOR_WORKER_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include <vector> #include "base/functional/callback.h" #include "gpu/config/gpu_info.h" #include "third_party/skia/include/core/SkImageInfo.h" #include "ui/gfx/buffer_types.h" #include "ui/gfx/geometry/size.h" #include "ui/gfx/gpu_memory_buffer.h" namespace gpu { // An ImageDecodeAcceleratorWorker handles the actual hardware-accelerated // decode of an image of a specific type (e.g., JPEG, WebP, etc.). class ImageDecodeAcceleratorWorker { … }; } // namespace gpu #endif // GPU_IPC_SERVICE_IMAGE_DECODE_ACCELERATOR_WORKER_H_