mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-16 16:16:40 +03:00
44 lines
688 B
JavaScript
44 lines
688 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for Xbox
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/** @const */
|
|
var Windows = {};
|
|
|
|
|
|
/** @const */
|
|
Windows.Media = {};
|
|
|
|
|
|
/** @const */
|
|
Windows.Media.Protection = {};
|
|
|
|
|
|
/** @const */
|
|
Windows.Media.Protection.ProtectionCapabilities = class {
|
|
/**
|
|
* @param {string} type
|
|
* @param {string} keySystem
|
|
* @return {!Windows.Media.Protection.ProtectionCapabilityResult}
|
|
*/
|
|
isTypeSupported(type, keySystem) {}
|
|
};
|
|
|
|
/**
|
|
* @enum {string}
|
|
*/
|
|
Windows.Media.Protection.ProtectionCapabilityResult = {
|
|
notSupported: 'NotSupported',
|
|
maybe: 'Maybe',
|
|
probably: 'Probably',
|
|
};
|