OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 * @constructor | 6 * @constructor |
7 * @struct | 7 * @struct |
8 * @extends {PolymerElement} | 8 * @extends {PolymerElement} |
9 */ | 9 */ |
10 function FilesToggleRipple() {} | 10 function FilesToggleRipple() {} |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 /** @type {number} */ | 76 /** @type {number} */ |
77 AudioPlayerElement.prototype.playcount; | 77 AudioPlayerElement.prototype.playcount; |
78 | 78 |
79 /** @type {Array<!Object>} */ | 79 /** @type {Array<!Object>} */ |
80 AudioPlayerElement.prototype.tracks; | 80 AudioPlayerElement.prototype.tracks; |
81 | 81 |
82 /** @type {Object} */ | 82 /** @type {Object} */ |
83 AudioPlayerElement.prototype.model; | 83 AudioPlayerElement.prototype.model; |
84 | 84 |
| 85 /** @type {boolean} */ |
| 86 AudioPlayerElement.prototype.volumeSliderShown; |
| 87 |
85 AudioPlayerElement.prototype.onPageUnload = function() {}; | 88 AudioPlayerElement.prototype.onPageUnload = function() {}; |
86 | 89 |
87 AudioPlayerElement.prototype.onAudioError = function() {}; | 90 AudioPlayerElement.prototype.onAudioError = function() {}; |
OLD | NEW |