| Index: media/mojo/interfaces/provision_fetcher.mojom
|
| diff --git a/media/mojo/interfaces/provision_fetcher.mojom b/media/mojo/interfaces/provision_fetcher.mojom
|
| index f1e1d814a6a7a3820208fcdc552cdc761e376209..74d6b85be9280bca6b5fe0564144bf817d21a328 100644
|
| --- a/media/mojo/interfaces/provision_fetcher.mojom
|
| +++ b/media/mojo/interfaces/provision_fetcher.mojom
|
| @@ -4,15 +4,16 @@
|
|
|
| module media.mojom;
|
|
|
| -// An interface to retrieve provision information for Android MediaDrm.
|
| -// See Android documentation about MediaDrm provisioning:
|
| +// An interface to retrieve provision information for CDM. This includes Android
|
| +// MediaDrm. See Android documentation about MediaDrm provisioning:
|
| // https://developer.android.com/reference/android/media/MediaDrm.ProvisionRequest.html
|
|
|
| interface ProvisionFetcher {
|
| // Requests the provision information with |default_url| and |request_data|
|
| - // and returns |result| and the |response|. The input parameters |default_url|
|
| - // and |request_data| corresponds to Java class MediaDrm.ProvisionRequest.
|
| - // |response| will be empty iff |result| is false.
|
| + // and returns |result| and the |response|. On Android, the input parameters
|
| + // |default_url| and |request_data| corresponds to Java class
|
| + // MediaDrm.ProvisionRequest. |response| will be empty iff |result| is false.
|
| + // TODO(slan): Pass |default_url| as a url.mojom.Url (crbug.com/662752).
|
| Retrieve(string default_url, string request_data)
|
| => (bool result, string response);
|
| };
|
|
|