#ifndef CC_LAYERS_VIDEO_LAYER_IMPL_H_
#define CC_LAYERS_VIDEO_LAYER_IMPL_H_
#include <memory>
#include <optional>
#include <vector>
#include "base/time/time.h"
#include "cc/cc_export.h"
#include "cc/layers/layer_impl.h"
#include "components/viz/common/resources/release_callback.h"
#include "media/base/video_transformation.h"
namespace media {
class VideoFrame;
class VideoResourceUpdater;
}
namespace cc {
class VideoFrameProvider;
class VideoFrameProviderClientImpl;
class CC_EXPORT VideoLayerImpl : public LayerImpl { … };
}
#endif