// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_VIDEO_RENDERER_SINK_H_ #define MEDIA_BASE_VIDEO_RENDERER_SINK_H_ #include "base/memory/scoped_refptr.h" #include "base/time/time.h" #include "media/base/media_export.h" #include "media/base/video_frame.h" namespace media { // VideoRendererSink is an interface representing the end-point for rendered // video frames. An implementation is expected to periodically call Render() on // a callback object. class MEDIA_EXPORT VideoRendererSink { … }; } // namespace media #endif // MEDIA_BASE_VIDEO_RENDERER_SINK_H_