Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(943)

Unified Diff: services/media/factory_service/audio_track_controller.h

Issue 2069873003: Motown: Define MediaRenderer and make it the way we identify renderers. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix build break...audio_track_controller.* gone for good. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/media/factory_service/BUILD.gn ('k') | services/media/factory_service/audio_track_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/media/factory_service/audio_track_controller.h
diff --git a/services/media/factory_service/audio_track_controller.h b/services/media/factory_service/audio_track_controller.h
deleted file mode 100644
index da87bbba197b4d93f3ecea26375b581f667621d8..0000000000000000000000000000000000000000
--- a/services/media/factory_service/audio_track_controller.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2016 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 SERVICES_MEDIA_FACTORY_SERVICE_AUDIO_TRACK_CONTROLLER_H_
-#define SERVICES_MEDIA_FACTORY_SERVICE_AUDIO_TRACK_CONTROLLER_H_
-
-#include "mojo/services/media/audio/interfaces/audio_track.mojom.h"
-#include "mojo/services/media/common/interfaces/media_transport.mojom.h"
-#include "services/media/framework/types/stream_type.h"
-
-namespace mojo {
-
-class Shell;
-
-namespace media {
-
-// Controls an audio track.
-class AudioTrackController {
- public:
- using GetSupportedMediaTypesCallback = std::function<void(
- std::unique_ptr<std::vector<std::unique_ptr<StreamTypeSet>>>)>;
- using ConfigureCallback = std::function<void(MediaConsumerPtr)>;
-
- AudioTrackController(const String& url, Shell* shell);
-
- ~AudioTrackController();
-
- // Gets the media types supported by the audio track.
- void GetSupportedMediaTypes(const GetSupportedMediaTypesCallback& callback);
-
- // Configures the controller.
- void Configure(const std::unique_ptr<StreamType>& stream_type,
- const ConfigureCallback& callback);
-
- // Gets the timeline control site for the audio track.
- void GetTimelineControlSite(InterfaceRequest<MediaTimelineControlSite> req);
-
- private:
- AudioTrackPtr audio_track_;
-};
-
-} // namespace media
-} // namespace mojo
-
-#endif // SERVICES_MEDIA_FACTORY_SERVICE_AUDIO_TRACK_CONTROLLER_H_
« no previous file with comments | « services/media/factory_service/BUILD.gn ('k') | services/media/factory_service/audio_track_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698