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

Side by Side Diff: ui/file_manager/file_manager/foreground/elements/files_metadata_box.js

Issue 2074953002: Quick View: Initial implementation of "No preview availale" and UI update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 6 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 var FilesMetadataBox = Polymer({ 5 var FilesMetadataBox = Polymer({
6 is: 'files-metadata-box', 6 is: 'files-metadata-box',
7 7
8 properties: { 8 properties: {
9 size: String, 9 size: String,
10 modiifcationTime: String, 10 modiifcationTime: String,
11 /* 11 /*
12 * TODO(oka): Add the follwoing fields. 12 * TODO(oka): Add the following fields.
13 * filePath: String, 13 * filePath: String,
14 * imageWidth: Number, 14 * imageWidth: Number,
15 * imageHeight: Number, 15 * imageHeight: Number,
16 * mediaTitle: String, 16 * mediaTitle: String,
17 * mediaArtist: String, 17 * mediaArtist: String,
18 * mediaMimeType: String, 18 * mediaMimeType: String,
19 */ 19 */
20 }, 20 },
21 21
22 }); 22 });
23 23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698