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

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

Issue 936243004: Files.app: Start to use new metadata model in Audio Player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 10 months 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js ('k') | ui/file_manager/file_manager_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698