mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
01da5fa8a4
The spec can be seen at https://github.com/w3c/media-source/issues/320 Closes https://github.com/shaka-project/shaka-player/issues/5271
25 lines
414 B
JavaScript
25 lines
414 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for ManagedMediaSource which were missing in the
|
|
* Closure compiler.
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends {MediaSource}
|
|
*/
|
|
function ManagedMediaSource() {}
|
|
|
|
/**
|
|
* @param {string} type
|
|
* @return {boolean}
|
|
*/
|
|
ManagedMediaSource.isTypeSupported = function(type) {};
|