#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_IMAGE_LAYER_BRIDGE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_IMAGE_LAYER_BRIDGE_H_
#include "cc/layers/texture_layer_client.h"
#include "cc/resources/shared_bitmap_id_registrar.h"
#include "components/viz/common/resources/shared_image_format.h"
#include "third_party/blink/renderer/platform/graphics/graphics_types.h"
#include "third_party/blink/renderer/platform/graphics/static_bitmap_image.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "ui/gfx/geometry/point_f.h"
namespace cc {
class CrossThreadSharedBitmap;
class Layer;
class TextureLayer;
}
namespace gfx {
class Size;
}
namespace blink {
class WebGraphicsSharedImageInterfaceProvider;
class PLATFORM_EXPORT ImageLayerBridge
: public GarbageCollected<ImageLayerBridge>,
public cc::TextureLayerClient { … };
}
#endif