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

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

Issue 1053773007: Add Platform Verification Mojo Services. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn build Created 5 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: media/mojo/interfaces/platform_verification.mojom
diff --git a/media/mojo/interfaces/platform_verification.mojom b/media/mojo/interfaces/platform_verification.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..09882d56d03861c0099fbfe9a45a2e2673c3aa57
--- /dev/null
+++ b/media/mojo/interfaces/platform_verification.mojom
@@ -0,0 +1,13 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module media.interfaces;
+
+// Allows platform verification for the content protection use case.
+interface PlatformVerification {
+ ChallengePlatform(string service_id, string challenge) =>
DaleCurtis 2015/05/06 00:28:28 Bit light on the interface details? :)
Darren Krahn 2015/05/06 19:02:41 +1 -- I'm not sure if there are style guidelines f
xhwang 2015/05/07 00:27:37 Done.
+ (string? signed_data,
+ string? signed_data_signature,
+ string? platform_key_certificate);
Darren Krahn 2015/05/06 19:02:41 What about operation status in the case of a failu
xhwang 2015/05/07 00:27:37 Done.
+};

Powered by Google App Engine
This is Rietveld 408576698