mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
43afe3a7c8
We often use the IDestroyable interface to provide us with a standardized way to break internal references and tear-down objects, however many objects don't need this to be async. Once using IDestroyable, everyone must assume that you must be async. This change introduces IReleasable, a sibling to IDestryable, which provides the |release| method. IReleasable is the synchronous version of IDestroyable. This change converts EventManager from IDestroyable to IReleasable as the first of many conversions. Change-Id: Ic3e90e594abc1c7326eccbe2521eb71676b74a09
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
goog.provide('shaka.ui.Element');
|
|
|
|
goog.require('shaka.util.EventManager');
|
|
|
|
|
|
/**
|
|
* @implements {shaka.extern.IUIElement}
|
|
* @abstract
|
|
* @export
|
|
*/
|
|
shaka.ui.Element = class {
|
|
/**
|
|
* @param {!HTMLElement} parent
|
|
* @param {!shaka.ui.Controls} controls
|
|
*/
|
|
constructor(parent, controls) {
|
|
/** @protected {!HTMLElement} */
|
|
this.parent = parent;
|
|
|
|
/** @protected {!shaka.ui.Controls} */
|
|
this.controls = controls;
|
|
|
|
/** @protected {shaka.util.EventManager} */
|
|
this.eventManager = new shaka.util.EventManager();
|
|
|
|
/** @protected {shaka.ui.Localization} */
|
|
this.localization = this.controls.getLocalization();
|
|
|
|
/** @protected {shaka.Player} */
|
|
this.player = this.controls.getPlayer();
|
|
|
|
/** @protected {HTMLMediaElement} */
|
|
this.video = this.controls.getVideo();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
destroy() {
|
|
this.eventManager.release();
|
|
return Promise.resolve();
|
|
}
|
|
};
|