// Copyright 2010 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_LAYERS_VIDEO_LAYER_H_ #define CC_LAYERS_VIDEO_LAYER_H_ #include <memory> #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "cc/cc_export.h" #include "cc/layers/layer.h" #include "media/base/video_transformation.h" namespace media { class VideoFrame; } namespace cc { class VideoFrameProvider; class VideoLayerImpl; // A Layer that contains a Video element. class CC_EXPORT VideoLayer : public Layer { … }; } // namespace cc #endif // CC_LAYERS_VIDEO_LAYER_H_