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 * @typedef {{ | 6 * @typedef {{ |
7 * scaleX: number, | 7 * scaleX: number, |
8 * scaleY: number, | 8 * scaleY: number, |
9 * rotate90: number | 9 * rotate90: number |
10 * }} | 10 * }} |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 * Whether the entry is shared publicly. | 121 * Whether the entry is shared publicly. |
122 * @public {boolean|undefined} | 122 * @public {boolean|undefined} |
123 */ | 123 */ |
124 this.shared; | 124 this.shared; |
125 | 125 |
126 /** | 126 /** |
127 * URL for open a file in browser tab. | 127 * URL for open a file in browser tab. |
128 * @public {string|undefined} | 128 * @public {string|undefined} |
129 */ | 129 */ |
130 this.externalFileUrl; | 130 this.externalFileUrl; |
| 131 |
| 132 /** |
| 133 * @public {string|undefined} |
| 134 */ |
| 135 this.mediaTitle; |
| 136 |
| 137 /** |
| 138 * @public {string|undefined} |
| 139 */ |
| 140 this.mediaArtist; |
131 } | 141 } |
OLD | NEW |