Fix chrome.cast.media class implementations

This commit is contained in:
hensm
2019-01-12 13:47:49 +00:00
parent 536d170d51
commit 8588b856b5
25 changed files with 89 additions and 52 deletions

View File

@@ -2,8 +2,11 @@
export default class QueueInsertItemsRequest {
constructor (itemsToInsert) {
this.customData = {};
this.customData = null;
this.insertBefore = null;
this.items = itemsToInsert;
this.requestId = null;
this.sessionId = null;
this.type = "QUEUE_INSERT";
}
}