chromium/third_party/blink/renderer/core/html/media/remote_playback_controller.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_REMOTE_PLAYBACK_CONTROLLER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_REMOTE_PLAYBACK_CONTROLLER_H_

#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/html/media/html_media_element.h"
#include "third_party/blink/renderer/platform/supplementable.h"

namespace blink {

class RemotePlaybackObserver;

// Interface exposing RemotePlayback to core/. It is meant to replace
// WebRemotePlaybackClient in the long run when there will be no need to expose
// this outside of Blink.
class CORE_EXPORT RemotePlaybackController
    : public Supplement<HTMLMediaElement> {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_REMOTE_PLAYBACK_CONTROLLER_H_