// Copyright 2016 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_RENDERER_CLIENT_H_ #define MEDIA_BASE_RENDERER_CLIENT_H_ #include <optional> #include "media/base/audio_decoder_config.h" #include "media/base/buffering_state.h" #include "media/base/media_export.h" #include "media/base/media_status.h" #include "media/base/pipeline_status.h" #include "media/base/video_decoder_config.h" #include "media/base/waiting.h" #include "ui/gfx/geometry/size.h" namespace media { // Interface used by Renderer, AudioRenderer, VideoRenderer and // MediaPlayerRenderer implementations to notify their clients. class MEDIA_EXPORT RendererClient { … }; } // namespace media #endif // MEDIA_BASE_RENDERER_CLIENT_H_