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

Side by Side Diff: mojo/services/media/control/interfaces/media_player.mojom

Issue 1741963002: Auto-formatted all .mojom files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [DartPackage="mojo_services"] 5 [DartPackage="mojo_services"]
6 module mojo.media; 6 module mojo.media;
7 7
8 import "mojo/services/media/common/interfaces/media_metadata.mojom"; 8 import "mojo/services/media/common/interfaces/media_metadata.mojom";
9 import "mojo/services/media/common/interfaces/media_state.mojom"; 9 import "mojo/services/media/common/interfaces/media_state.mojom";
10 import "mojo/services/media/common/interfaces/rate_control.mojom"; 10 import "mojo/services/media/common/interfaces/rate_control.mojom";
(...skipping 11 matching lines...) Expand all
22 Pause(); 22 Pause();
23 23
24 // Seeks to the specified position, specified in nanoseconds. 24 // Seeks to the specified position, specified in nanoseconds.
25 // TODO(dalesat): Consider adding relative vs remote flag. 25 // TODO(dalesat): Consider adding relative vs remote flag.
26 // TODO(dalesat): Consider adding parameters regarding desired precision. 26 // TODO(dalesat): Consider adding parameters regarding desired precision.
27 Seek(int64 position); 27 Seek(int64 position);
28 28
29 // Gets the status. To get the status immediately, call 29 // Gets the status. To get the status immediately, call
30 // GetStatus(kInitialStatus). To get updates thereafter, pass the version 30 // GetStatus(kInitialStatus). To get updates thereafter, pass the version
31 // sent in the previous callback. 31 // sent in the previous callback.
32 GetStatus(uint64 version_last_seen) => 32 GetStatus(uint64 version_last_seen)
33 (uint64 version, MediaPlayerStatus status); 33 => (uint64 version, MediaPlayerStatus status);
34 }; 34 };
35 35
36 // MediaPlayer status information. 36 // MediaPlayer status information.
37 struct MediaPlayerStatus { 37 struct MediaPlayerStatus {
38 // Current state of the player. 38 // Current state of the player.
39 MediaState state; 39 MediaState state;
40 40
41 // Transform translating local time to presentation time. Reverse translation 41 // Transform translating local time to presentation time. Reverse translation
42 // (presentation time to local time) is only valid when media is playing. 42 // (presentation time to local time) is only valid when media is playing.
43 TimelineTransform? timeline_transform; 43 TimelineTransform? timeline_transform;
44 44
45 // Describes the media. 45 // Describes the media.
46 MediaMetadata? metadata; 46 MediaMetadata? metadata;
47 }; 47 };
OLDNEW
« no previous file with comments | « mojo/services/media/control/interfaces/media_factory.mojom ('k') | mojo/services/media/control/interfaces/media_sink.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698