mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
f539147d48
This fixes all the license headers in the main library, which corrects the appearance of the main license in the compiled output. It seems that the `!` in the header forces the compiler to keep it in the output. I believe older compiler releases did this purely based on `@license`. Issue #2638 Change-Id: I7f0e918caad10c9af689c9d07672b7fe9be7b2f3
26 lines
537 B
JavaScript
26 lines
537 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.provide('shaka.util.IReleasable');
|
|
|
|
|
|
/**
|
|
* An interface to standardize how objects release internal references
|
|
* synchronously. If an object needs to asynchronously release references, then
|
|
* it should use 'shaka.util.IDestroyable'.
|
|
*
|
|
* @interface
|
|
* @exportInterface
|
|
*/
|
|
shaka.util.IReleasable = class {
|
|
/**
|
|
* Request that this object release all internal references.
|
|
*
|
|
* @exportInterface
|
|
*/
|
|
release() {}
|
|
};
|