mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-18 16:36:56 +03:00
64896d70b0
This reflects changes in Google's policy on JavaScript license headers, which should be smaller to avoid increasing the size of the binary unnecessarily. This also updates the company name from "Google, Inc" to "Google LLC". Change-Id: I3f8b9ed3700b6351f43173d50c94d35c333e82b4
27 lines
483 B
JavaScript
27 lines
483 B
JavaScript
/** @license
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
/**
|
|
* @fileoverview Externs for MediaError properties not in the Closure compiler.
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/**
|
|
* A new field in the living standard to give a more informative diagnostic
|
|
* message about the error.
|
|
* @type {string}
|
|
*/
|
|
MediaError.prototype.message;
|
|
|
|
|
|
/**
|
|
* A Microsoft Edge and IE extension to add a Windows error code.
|
|
* @type {number}
|
|
*/
|
|
MediaError.prototype.msExtendedCode;
|