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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 module media.interfaces;
6
7 // Allows platform verification for the content protection use case.
8 interface PlatformVerification {
9 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.
10 (string? signed_data,
11 string? signed_data_signature,
12 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.
13 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698