mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
f0286ae7f8
The Chromecast reports supporting IndexedDB but whenever an insert command was performed, the operation would hang indefinitely. This change introduces a pollyfill for the Chromecast that will remove the indexed db reference which will have DBEngine's "is supported" behavior to report no support. Alone this change would not stop the tests from running, so the DBEngine tests had to be updated to first check that the DEngine is supported on the active platform. Bug: 34927282 Change-Id: I8d4797f0981b014fb42db1c237c85704888bea7f
48 lines
1.3 KiB
JavaScript
48 lines
1.3 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.polyfill.IndexedDB');
|
|
|
|
goog.require('goog.asserts');
|
|
goog.require('shaka.log');
|
|
goog.require('shaka.polyfill.register');
|
|
|
|
|
|
/**
|
|
* @namespace shaka.polyfill.IndexedDB
|
|
*
|
|
* @summary A polyfill to patch indexed db bugs.
|
|
*/
|
|
|
|
|
|
/**
|
|
* Install the polyfill if needed.
|
|
*/
|
|
shaka.polyfill.IndexedDB.install = function() {
|
|
shaka.log.debug('IndexedDB.install');
|
|
|
|
var agent = navigator.userAgent;
|
|
if (agent && agent.indexOf('CrKey') >= 0) {
|
|
shaka.log.debug('Removing IndexedDB from ChromeCast');
|
|
delete window.indexedDB;
|
|
goog.asserts.assert(
|
|
!window.indexedDB, 'Failed to override window.indexedDB');
|
|
}
|
|
};
|
|
|
|
shaka.polyfill.register(shaka.polyfill.IndexedDB.install);
|