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

Side by Side Diff: ppapi/api/private/pp_content_decryptor.idl

Issue 24192004: Changes to the EME Pepper API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /** 6 /**
7 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information 7 * The <code>PP_DecryptTrackingInfo</code> struct contains necessary information
8 * that can be used to associate the decrypted block with a decrypt request 8 * that can be used to associate the decrypted block with a decrypt request
9 * and/or an input block. 9 * and/or an input block.
10 */ 10 */
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 }; 354 };
355 355
356 /** 356 /**
357 * <code>PP_DecryptorStreamType</code> contains stream type constants. 357 * <code>PP_DecryptorStreamType</code> contains stream type constants.
358 */ 358 */
359 [assert_size(4)] 359 [assert_size(4)]
360 enum PP_DecryptorStreamType { 360 enum PP_DecryptorStreamType {
361 PP_DECRYPTORSTREAMTYPE_AUDIO = 0, 361 PP_DECRYPTORSTREAMTYPE_AUDIO = 0,
362 PP_DECRYPTORSTREAMTYPE_VIDEO = 1 362 PP_DECRYPTORSTREAMTYPE_VIDEO = 1
363 }; 363 };
364
365 /**
366 * <code>PP_KeySystemFlags</code> contains additional information for the key
ddorwin 2013/09/18 21:26:53 nit: maybe "for CDM initialization". Same with the
jrummell 2013/09/19 00:37:28 Done.
367 * system.
368 */
369 [assert_size(4)]
370 struct PP_KeySystemFlags {
371 /**
372 * Indicates if the underlying host platform can be challenged;
373 * i.e., verified as a trusted platform.
374 */
375 PP_Bool can_challenge_platform;
DaleCurtis 2013/09/18 21:29:30 FYI, dmichael@ I'm going to rip out the CanChallen
dmichael (off chromium) 2013/09/18 22:52:32 FWIW, if you're invoking from a background thread,
376 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698