| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 * @public {string|undefined} | 186 * @public {string|undefined} |
| 187 */ | 187 */ |
| 188 this.mediaGenre; | 188 this.mediaGenre; |
| 189 | 189 |
| 190 /** | 190 /** |
| 191 * @public {string|undefined} | 191 * @public {string|undefined} |
| 192 */ | 192 */ |
| 193 this.mediaTitle; | 193 this.mediaTitle; |
| 194 | 194 |
| 195 /** | 195 /** |
| 196 * @public {number|undefined} | 196 * @public {string|undefined} |
| 197 */ | 197 */ |
| 198 this.mediaTrack; | 198 this.mediaTrack; |
| 199 | 199 |
| 200 /** | 200 /** |
| 201 * @public {string|undefined} |
| 202 */ |
| 203 this.mediaYearRecorded; |
| 204 |
| 205 /** |
| 201 * Mime type obtained by content provider based on URL. | 206 * Mime type obtained by content provider based on URL. |
| 202 * TODO(hirono): Remove the mediaMimeType. | 207 * TODO(hirono): Remove the mediaMimeType. |
| 203 * @public {string|undefined} | 208 * @public {string|undefined} |
| 204 */ | 209 */ |
| 205 this.mediaMimeType; | 210 this.mediaMimeType; |
| 206 | 211 |
| 207 /** | 212 /** |
| 208 * "Image File Directory" obtained from EXIF header. | 213 * "Image File Directory" obtained from EXIF header. |
| 209 * @public {!Object|undefined} | 214 * @public {!Object|undefined} |
| 210 */ | 215 */ |
| 211 this.ifd; | 216 this.ifd; |
| 212 | 217 |
| 213 /** | 218 /** |
| 214 * @public {boolean|undefined} | 219 * @public {boolean|undefined} |
| 215 */ | 220 */ |
| 216 this.exifLittleEndian; | 221 this.exifLittleEndian; |
| 217 } | 222 } |
| OLD | NEW |