#ifndef CONTENT_RENDERER_MEDIA_RENDERER_WEB_MEDIA_PLAYER_DELEGATE_H_
#define CONTENT_RENDERER_MEDIA_RENDERER_WEB_MEDIA_PLAYER_DELEGATE_H_
#include <map>
#include <memory>
#include <set>
#include "base/containers/flat_set.h"
#include "base/containers/id_map.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/default_tick_clock.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "content/common/content_export.h"
#include "content/public/renderer/render_frame_observer.h"
#include "third_party/blink/public/platform/media/web_media_player_delegate.h"
#include "third_party/blink/public/web/web_view_observer.h"
namespace blink {
enum class WebFullscreenVideoStatus;
}
namespace media {
enum class MediaContentType;
class CONTENT_EXPORT RendererWebMediaPlayerDelegate final
: public content::RenderFrameObserver,
public blink::WebViewObserver,
public blink::WebMediaPlayerDelegate { … };
}
#endif