| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Widevine player responsible for playing media using Widevine key system | 5 // Widevine player responsible for playing media using Widevine key system |
| 6 // and prefixed EME API. | 6 // and prefixed EME API. |
| 7 function PrefixedWidevinePlayer(video, testConfig) { | 7 function PrefixedWidevinePlayer(video, testConfig) { |
| 8 this.video = video; | 8 this.video = video; |
| 9 this.testConfig = testConfig; | 9 this.testConfig = testConfig; |
| 10 } | 10 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 Utils.timeLog('Adding key to sessionID: ' + message.sessionId, key); | 23 Utils.timeLog('Adding key to sessionID: ' + message.sessionId, key); |
| 24 message.target.webkitAddKey(this.testConfig.keySystem, | 24 message.target.webkitAddKey(this.testConfig.keySystem, |
| 25 key, | 25 key, |
| 26 new Uint8Array(1), | 26 new Uint8Array(1), |
| 27 message.sessionId); | 27 message.sessionId); |
| 28 } | 28 } |
| 29 Utils.sendRequest('POST', 'arraybuffer', message.message, | 29 Utils.sendRequest('POST', 'arraybuffer', message.message, |
| 30 this.testConfig.licenseServerURL, onSuccess, | 30 this.testConfig.licenseServerURL, onSuccess, |
| 31 this.testConfig.forceInvalidResponse); | 31 this.testConfig.forceInvalidResponse); |
| 32 }; | 32 }; |
| OLD | NEW |