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

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

Issue 1986303002: Motown: Use new TimelineTransform and related definitions (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fixes per feedback. Created 4 years, 7 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
Index: services/media/factory_service/audio_track_controller.cc
diff --git a/services/media/factory_service/audio_track_controller.cc b/services/media/factory_service/audio_track_controller.cc
index e36e04b6ba0b666582518b249c6e5041af204227..3b85597eac6de0487912e3b8558c14fd1664cbc8 100644
--- a/services/media/factory_service/audio_track_controller.cc
+++ b/services/media/factory_service/audio_track_controller.cc
@@ -45,10 +45,10 @@ void AudioTrackController::Configure(
MediaConsumerPtr consumer;
audio_track_->Configure(config.Pass(), GetProxy(&consumer));
- RateControlPtr rate_control;
- audio_track_->GetRateControl(GetProxy(&rate_control));
+ MediaTimelineControlSitePtr timeline_control_site;
+ audio_track_->GetTimelineControlSite(GetProxy(&timeline_control_site));
- callback(consumer.Pass(), rate_control.Pass());
+ callback(consumer.Pass(), timeline_control_site.Pass());
}
} // namespace media
« no previous file with comments | « services/media/factory_service/audio_track_controller.h ('k') | services/media/factory_service/media_demux_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698