Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: ui/file_manager/externs/chrome_cast.js

Issue 1987173002: Video Player: Support Media Router to cast Drive videos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 /** 5 /**
6 * @namespace 6 * @namespace
7 */ 7 */
8 chrome.cast = {}; 8 chrome.cast = {};
9 9
10 10
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 567
568 /** 568 /**
569 * @typedef {!function(?chrome.cast.Receiver, !chrome.cast.ReceiverAction)} 569 * @typedef {!function(?chrome.cast.Receiver, !chrome.cast.ReceiverAction)}
570 */ 570 */
571 chrome.cast.ReceiverActionListener; 571 chrome.cast.ReceiverActionListener;
572 572
573 573
574 /** 574 /**
575 * @type {boolean} 575 * @type {boolean}
576 */ 576 */
577 chrome.cast.isAvailable = false; 577 chrome.cast.isAvailable;
578 578
579 579
580 /** 580 /**
581 * @type {boolean}
582 */
583 chrome.cast.usingPresentationApi;
584
yoshiki 2016/05/19 07:23:37 nit: remove a line.
fukino 2016/05/19 08:11:06 In this file, it looks consistent to have 2 blank
585
586 /**
581 * @param {!chrome.cast.ApiConfig} apiConfig 587 * @param {!chrome.cast.ApiConfig} apiConfig
582 * @param {function()} successCallback 588 * @param {function()} successCallback
583 * @param {function(chrome.cast.Error)} errorCallback 589 * @param {function(chrome.cast.Error)} errorCallback
584 */ 590 */
585 chrome.cast.initialize = function(apiConfig, successCallback, errorCallback) {}; 591 chrome.cast.initialize = function(apiConfig, successCallback, errorCallback) {};
586 592
587 593
588 /** 594 /**
589 * @param {function(!chrome.cast.Session)} successCallback 595 * @param {function(!chrome.cast.Session)} successCallback
590 * @param {function(chrome.cast.Error)} errorCallback 596 * @param {function(chrome.cast.Error)} errorCallback
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 chrome.cast.media.TextTrackStyle.prototype.fontFamily; 1239 chrome.cast.media.TextTrackStyle.prototype.fontFamily;
1234 1240
1235 /** @type {?chrome.cast.media.TextTrackFontGenericFamily} */ 1241 /** @type {?chrome.cast.media.TextTrackFontGenericFamily} */
1236 chrome.cast.media.TextTrackStyle.prototype.fontGenericFamily; 1242 chrome.cast.media.TextTrackStyle.prototype.fontGenericFamily;
1237 1243
1238 /** @type {?chrome.cast.media.TextTrackFontStyle} */ 1244 /** @type {?chrome.cast.media.TextTrackFontStyle} */
1239 chrome.cast.media.TextTrackStyle.prototype.fontStyle; 1245 chrome.cast.media.TextTrackStyle.prototype.fontStyle;
1240 1246
1241 /** @type {Object} */ 1247 /** @type {Object} */
1242 chrome.cast.media.TextTrackStyle.prototype.customData; 1248 chrome.cast.media.TextTrackStyle.prototype.customData;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698