Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: ui/file_manager/file_manager/foreground/js/metadata/metadata_item.js

Issue 2581133002: Quick View: Show year recorded metadata. (Closed)
Patch Set: . Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698