// 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 MEDIA_BASE_MEDIA_CONTROLLER_H_ #define MEDIA_BASE_MEDIA_CONTROLLER_H_ #include "base/time/time.h" namespace media { // High level interface that allows a controller to issue simple media commands. // Modeled after the media_router.mojom.MediaController interface. // State changes will be signaled via the MediaStatusObserver interface. // TODO(tguilbert): Add MediaStatusObserver interface. class MediaController { … }; } // namespace media #endif // MEDIA_BASE_MEDIA_CONTROLLER_H_