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

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

Issue 2527333002: Quick View: Added Genre, Track and Duration metadata. (Closed)
Patch Set: Updated polymer element. 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698