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

Side by Side Diff: media/mojo/interfaces/renderer.mojom

Issue 2434413002: Plumb firstPartyForCookies() to MediaPlayerBridge (Closed)
Patch Set: Clarified comments. Created 4 years, 2 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
« no previous file with comments | « media/mojo/clients/mojo_renderer.cc ('k') | media/mojo/services/media_mojo_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 module media.mojom; 5 module media.mojom;
6 6
7 import "media/mojo/interfaces/demuxer_stream.mojom"; 7 import "media/mojo/interfaces/demuxer_stream.mojom";
8 import "media/mojo/interfaces/media_types.mojom"; 8 import "media/mojo/interfaces/media_types.mojom";
9 import "mojo/common/common_custom_types.mojom"; 9 import "mojo/common/common_custom_types.mojom";
10 import "ui/gfx/geometry/mojo/geometry.mojom"; 10 import "ui/gfx/geometry/mojo/geometry.mojom";
11 import "url/mojo/url.mojom"; 11 import "url/mojo/url.mojom";
12 12
13 interface Renderer { 13 interface Renderer {
14 // Initializes the Renderer with one or both of an audio and video stream, 14 // Initializes the Renderer with one or both of an audio and video stream,
15 // executing the callback with whether the initialization succeeded. 15 // executing the callback with whether the initialization succeeded.
16 Initialize(associated RendererClient client, 16 Initialize(associated RendererClient client,
17 DemuxerStream? audio, 17 DemuxerStream? audio,
18 DemuxerStream? video, 18 DemuxerStream? video,
19 url.mojom.Url? url) => (bool success); 19 url.mojom.Url? media_url,
20 url.mojom.Url? first_party_for_cookies) => (bool success);
20 21
21 // Discards any buffered data, executing callback when completed. 22 // Discards any buffered data, executing callback when completed.
22 // NOTE: If an error occurs, RendererClient::OnError() can be called 23 // NOTE: If an error occurs, RendererClient::OnError() can be called
23 // before the callback is executed. 24 // before the callback is executed.
24 Flush() => (); 25 Flush() => ();
25 26
26 // Starts rendering from |time|. 27 // Starts rendering from |time|.
27 StartPlayingFrom(mojo.common.mojom.TimeDelta time); 28 StartPlayingFrom(mojo.common.mojom.TimeDelta time);
28 29
29 // Updates the current playback rate. The default playback rate should be 1. 30 // Updates the current playback rate. The default playback rate should be 1.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 OnStatisticsUpdate(PipelineStatistics stats); 82 OnStatisticsUpdate(PipelineStatistics stats);
82 83
83 // Called when the remote renderering service is waiting on the decryption 84 // Called when the remote renderering service is waiting on the decryption
84 // key. 85 // key.
85 OnWaitingForDecryptionKey(); 86 OnWaitingForDecryptionKey();
86 87
87 // Executed the first time the metadata is updated, and whenever the duration 88 // Executed the first time the metadata is updated, and whenever the duration
88 // changes. 89 // changes.
89 OnDurationChange(mojo.common.mojom.TimeDelta duration); 90 OnDurationChange(mojo.common.mojom.TimeDelta duration);
90 }; 91 };
OLDNEW
« no previous file with comments | « media/mojo/clients/mojo_renderer.cc ('k') | media/mojo/services/media_mojo_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698