| OLD | NEW |
| 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 |
| OLD | NEW |