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

Unified Diff: mojo/dart/packages/mojo_services/lib/mojo/media/audio_track.mojom.dart

Issue 2008553006: Add 'Flog' formatted logging to mojo/services (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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: mojo/dart/packages/mojo_services/lib/mojo/media/audio_track.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/mojo/media/audio_track.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/media/audio_track.mojom.dart
index df9cd3ec144ed6014515acbd3aaaae50a0a4a0c9..7145119d5b0aaaff99367cec7e5569bfdab5ed4a 100644
--- a/mojo/dart/packages/mojo_services/lib/mojo/media/audio_track.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/mojo/media/audio_track.mojom.dart
@@ -422,7 +422,7 @@ class _AudioTrackGetTimelineControlSiteParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
];
- Object timelineControlSite = null;
+ timeline_controller_mojom.MediaTimelineControlSiteInterfaceRequest timelineControlSite = null;
_AudioTrackGetTimelineControlSiteParams() : super(kVersions.last.size);
@@ -599,8 +599,8 @@ abstract class AudioTrack {
return p;
}
dynamic describe([Function responseFactory = null]);
- void configure(AudioTrackConfiguration configuration, Object pipe);
- void getTimelineControlSite(Object timelineControlSite);
+ void configure(AudioTrackConfiguration configuration, media_transport_mojom.MediaConsumerInterfaceRequest pipe);
+ void getTimelineControlSite(timeline_controller_mojom.MediaTimelineControlSiteInterfaceRequest timelineControlSite);
void setGain(double dbGain);
static const double kMutedGain = -160.0;
static const double kMaxGain = 20.0;
@@ -719,7 +719,7 @@ class AudioTrackProxy
ctrl.sendMessage(params,
_audioTrackMethodConfigureName);
}
- void getTimelineControlSite(Object timelineControlSite) {
+ void getTimelineControlSite(timeline_controller_mojom.MediaTimelineControlSiteInterfaceRequest timelineControlSite) {
if (!ctrl.isBound) {
ctrl.proxyError("The Proxy is closed.");
return;
@@ -878,7 +878,7 @@ class AudioTrackStub
void configure(AudioTrackConfiguration configuration, media_transport_mojom.MediaConsumerInterfaceRequest pipe) {
return impl.configure(configuration, pipe);
}
- void getTimelineControlSite(Object timelineControlSite) {
+ void getTimelineControlSite(timeline_controller_mojom.MediaTimelineControlSiteInterfaceRequest timelineControlSite) {
return impl.getTimelineControlSite(timelineControlSite);
}
void setGain(double dbGain) {

Powered by Google App Engine
This is Rietveld 408576698