mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
ff1ef7c262
Close #8441 --------- Co-authored-by: Wojciech Tyczyński <tykus160@gmail.com>
32 lines
448 B
JavaScript
32 lines
448 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for WebOS
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/** @const */
|
|
var PalmSystem = {};
|
|
|
|
|
|
/** @type {string} */
|
|
PalmSystem.deviceInfo;
|
|
|
|
|
|
/** @constructor */
|
|
function PalmServiceBridge() {}
|
|
|
|
|
|
/** @type {?Function} */
|
|
PalmServiceBridge.prototype.onservicecallback;
|
|
|
|
|
|
/** @type {Function} */
|
|
PalmServiceBridge.prototype.call = function() {};
|