#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGRAPHICS_SHARED_IMAGE_INTERFACE_PROVIDER_IMPL_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGRAPHICS_SHARED_IMAGE_INTERFACE_PROVIDER_IMPL_H_
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "gpu/ipc/client/gpu_channel_observer.h"
#include "third_party/blink/public/platform/web_graphics_shared_image_interface_provider.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
#include "base/functional/callback.h"
namespace gpu {
class ClientSharedImageInterface;
}
namespace blink {
class WebGraphicsSharedImageInterfaceProviderImpl
: public WebGraphicsSharedImageInterfaceProvider,
public gpu::GpuChannelLostObserver { … };
}
#endif