Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 }; | |
| OLD | NEW |