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

Unified Diff: media/mojo/interfaces/provision_fetcher.mojom

Issue 2411573002: media: Use new wrapper types for media mojo interfaces (Closed)
Patch Set: media: Use new wrapper types for media mojo interfaces 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 side-by-side diff with in-line comments
Download patch
Index: media/mojo/interfaces/provision_fetcher.mojom
diff --git a/media/mojo/interfaces/provision_fetcher.mojom b/media/mojo/interfaces/provision_fetcher.mojom
index 6ea0680c83a6b92ebc015e8d8d8b522bf0d05405..f1e1d814a6a7a3820208fcdc552cdc761e376209 100644
--- a/media/mojo/interfaces/provision_fetcher.mojom
+++ b/media/mojo/interfaces/provision_fetcher.mojom
@@ -12,7 +12,7 @@ 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 null iff |result| is false.
+ // |response| will be empty iff |result| is false.
Retrieve(string default_url, string request_data)
- => (bool result, string? response);
-};
+ => (bool result, string response);
+};

Powered by Google App Engine
This is Rietveld 408576698