blob: 878c93516bd6f638ba2d4aa5f031abade2e8f1ab [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_RENDERERS_REMOTE_PLAYBACK_CLIENT_WRAPPER_H_
#define MEDIA_RENDERERS_REMOTE_PLAYBACK_CLIENT_WRAPPER_H_
namespace media {
// Wraps a WebRemotePlaybackClient to expose only the methods used by the
// FlingingRendererClientFactory. This avoids dependencies on the blink layer.
class RemotePlaybackClientWrapper {
public:
RemotePlaybackClientWrapper() = default;
virtual ~RemotePlaybackClientWrapper() = default;
virtual std::string GetActivePresentationId() = 0;
};
} // namespace media
#endif // MEDIA_RENDERERS_REMOTE_PLAYBACK_CLIENT_WRAPPER_H_