| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 this.externalFileUrl; | 167 this.externalFileUrl; |
| 168 | 168 |
| 169 /** | 169 /** |
| 170 * @public {string|undefined} | 170 * @public {string|undefined} |
| 171 */ | 171 */ |
| 172 this.mediaAlbum; | 172 this.mediaAlbum; |
| 173 | 173 |
| 174 /** | 174 /** |
| 175 * @public {string|undefined} | 175 * @public {string|undefined} |
| 176 */ | 176 */ |
| 177 this.mediaArtist; |
| 178 |
| 179 /** |
| 180 * Audio or video duration in seconds. |
| 181 * @public {number|undefined} |
| 182 */ |
| 183 this.mediaDuration; |
| 184 |
| 185 /** |
| 186 * @public {string|undefined} |
| 187 */ |
| 188 this.mediaGenre; |
| 189 |
| 190 /** |
| 191 * @public {string|undefined} |
| 192 */ |
| 177 this.mediaTitle; | 193 this.mediaTitle; |
| 178 | 194 |
| 179 /** | 195 /** |
| 180 * @public {string|undefined} | 196 * @public {number|undefined} |
| 181 */ | 197 */ |
| 182 this.mediaArtist; | 198 this.mediaTrack; |
| 183 | 199 |
| 184 /** | 200 /** |
| 185 * Mime type obtained by content provider based on URL. | 201 * Mime type obtained by content provider based on URL. |
| 186 * TODO(hirono): Remove the mediaMimeType. | 202 * TODO(hirono): Remove the mediaMimeType. |
| 187 * @public {string|undefined} | 203 * @public {string|undefined} |
| 188 */ | 204 */ |
| 189 this.mediaMimeType; | 205 this.mediaMimeType; |
| 190 | 206 |
| 191 /** | 207 /** |
| 192 * "Image File Directory" obtained from EXIF header. | 208 * "Image File Directory" obtained from EXIF header. |
| 193 * @public {!Object|undefined} | 209 * @public {!Object|undefined} |
| 194 */ | 210 */ |
| 195 this.ifd; | 211 this.ifd; |
| 196 | 212 |
| 197 /** | 213 /** |
| 198 * @public {boolean|undefined} | 214 * @public {boolean|undefined} |
| 199 */ | 215 */ |
| 200 this.exifLittleEndian; | 216 this.exifLittleEndian; |
| 201 } | 217 } |
| OLD | NEW |