1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
8 * @extends {PolymerElement}
10 function FilesToggleRipple() {}
15 FilesToggleRipple
.prototype.activated
;
20 * @extends {PolymerElement}
22 function FilesToast() {}
27 FilesToast
.prototype.visible
;
32 FilesToast
.prototype.timeout
;
35 * @param {string} text
36 * @param {{text: string, callback: function()}=} opt_action
38 FilesToast
.prototype.show = function(text
, opt_action
) {};
43 FilesToast
.prototype.hide = function() {};
48 * @extends {PolymerElement}
50 function AudioPlayerElement() {}
52 /** @type {boolean} */
53 AudioPlayerElement
.prototype.playing
;
56 AudioPlayerElement
.prototype.time
;
58 /** @type {boolean} */
59 AudioPlayerElement
.prototype.shuffule
;
61 /** @type {boolean} */
62 AudioPlayerElement
.prototype.repeat
;
65 AudioPlayerElement
.prototype.volume
;
67 /** @type {boolean} */
68 AudioPlayerElement
.prototype.expanded
;
71 AudioPlayerElement
.prototype.currentTrackIndex
;
74 AudioPlayerElement
.prototype.currenttrackurl
;
77 AudioPlayerElement
.prototype.playcount
;
79 /** @type {Array<!Object>} */
80 AudioPlayerElement
.prototype.tracks
;
83 AudioPlayerElement
.prototype.model
;
85 AudioPlayerElement
.prototype.onPageUnload = function() {};
87 AudioPlayerElement
.prototype.onAudioError = function() {};