Source: lib/polyfill/patchedmediakeys_nop.js

  1. /**
  2. * @license
  3. * Copyright 2016 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. goog.provide('shaka.polyfill.PatchedMediaKeysNop');
  18. goog.require('goog.asserts');
  19. goog.require('shaka.log');
  20. /**
  21. * Install a polyfill to stub out {@link http://goo.gl/blgtZZ EME draft
  22. * 12 March 2015} on browsers without EME. All methods will fail.
  23. */
  24. shaka.polyfill.PatchedMediaKeysNop.install = function() {
  25. shaka.log.debug('PatchedMediaKeysNop.install');
  26. // Alias.
  27. var PatchedMediaKeysNop = shaka.polyfill.PatchedMediaKeysNop;
  28. // Install patches.
  29. navigator.requestMediaKeySystemAccess =
  30. PatchedMediaKeysNop.requestMediaKeySystemAccess;
  31. // Delete mediaKeys to work around strict mode compatibility issues.
  32. delete HTMLMediaElement.prototype['mediaKeys'];
  33. // Work around read-only declaration for mediaKeys by using a string.
  34. HTMLMediaElement.prototype['mediaKeys'] = null;
  35. HTMLMediaElement.prototype.setMediaKeys = PatchedMediaKeysNop.setMediaKeys;
  36. // These are not usable, but allow Player.isBrowserSupported to pass.
  37. window.MediaKeys = PatchedMediaKeysNop.MediaKeys;
  38. window.MediaKeySystemAccess = PatchedMediaKeysNop.MediaKeySystemAccess;
  39. };
  40. /**
  41. * An implementation of navigator.requestMediaKeySystemAccess.
  42. * Retrieve a MediaKeySystemAccess object.
  43. *
  44. * @this {!Navigator}
  45. * @param {string} keySystem
  46. * @param {!Array.<!MediaKeySystemConfiguration>} supportedConfigurations
  47. * @return {!Promise.<!MediaKeySystemAccess>}
  48. */
  49. shaka.polyfill.PatchedMediaKeysNop.requestMediaKeySystemAccess =
  50. function(keySystem, supportedConfigurations) {
  51. shaka.log.debug('PatchedMediaKeysNop.requestMediaKeySystemAccess');
  52. goog.asserts.assert(this == navigator,
  53. 'bad "this" for requestMediaKeySystemAccess');
  54. return Promise.reject(new Error(
  55. 'The key system specified is not supported.'));
  56. };
  57. /**
  58. * An implementation of HTMLMediaElement.prototype.setMediaKeys.
  59. * Attach a MediaKeys object to the media element.
  60. *
  61. * @this {!HTMLMediaElement}
  62. * @param {MediaKeys} mediaKeys
  63. * @return {!Promise}
  64. */
  65. shaka.polyfill.PatchedMediaKeysNop.setMediaKeys = function(mediaKeys) {
  66. shaka.log.debug('PatchedMediaKeysNop.setMediaKeys');
  67. goog.asserts.assert(this instanceof HTMLMediaElement,
  68. 'bad "this" for setMediaKeys');
  69. if (mediaKeys == null) {
  70. return Promise.resolve();
  71. }
  72. return Promise.reject(new Error('MediaKeys not supported.'));
  73. };
  74. /**
  75. * An unusable constructor for MediaKeys.
  76. * @constructor
  77. * @struct
  78. * @implements {MediaKeys}
  79. */
  80. shaka.polyfill.PatchedMediaKeysNop.MediaKeys = function() {
  81. throw new TypeError('Illegal constructor.');
  82. };
  83. /** @override */
  84. shaka.polyfill.PatchedMediaKeysNop.MediaKeys.prototype.createSession =
  85. function() {};
  86. /** @override */
  87. shaka.polyfill.PatchedMediaKeysNop.MediaKeys.prototype.setServerCertificate =
  88. function() {};
  89. /**
  90. * An unusable constructor for MediaKeySystemAccess.
  91. * @constructor
  92. * @struct
  93. * @implements {MediaKeySystemAccess}
  94. */
  95. shaka.polyfill.PatchedMediaKeysNop.MediaKeySystemAccess = function() {
  96. throw new TypeError('Illegal constructor.');
  97. };
  98. /** @override */
  99. shaka.polyfill.PatchedMediaKeysNop.MediaKeySystemAccess.prototype.
  100. getConfiguration = function() {};
  101. /** @override */
  102. shaka.polyfill.PatchedMediaKeysNop.MediaKeySystemAccess.prototype.
  103. createMediaKeys = function() {};
  104. /** @override */
  105. shaka.polyfill.PatchedMediaKeysNop.MediaKeySystemAccess.prototype.
  106. keySystem;