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

Unified Diff: ui/file_manager/file_manager/foreground/elements/files_metadata_box.html

Issue 2060983003: Quick View: Add functinoality to show generic metadata (size and modificationTime). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit 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 side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/file_manager/foreground/elements/files_metadata_box.html
diff --git a/ui/file_manager/file_manager/foreground/elements/files_metadata_box.html b/ui/file_manager/file_manager/foreground/elements/files_metadata_box.html
new file mode 100644
index 0000000000000000000000000000000000000000..c53b0f498b35a9deffc10117541a259c0edb809e
--- /dev/null
+++ b/ui/file_manager/file_manager/foreground/elements/files_metadata_box.html
@@ -0,0 +1,30 @@
+<!-- Copyright 2016 The Chromium Authors. All rights reserved.
+ -- Use of this source code is governed by a BSD-style license that can be
+ -- found in the LICENSE file.
+-->
+
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+
+<dom-module id="files-metadata-box">
+ <style>
+ :host {
+ display: block;
+ }
+ #box {
+ background: white;
+ overflow: auto;
+ position: absolute;
+ }
+ </style>
+ <template>
+ <div id="box">
+ <!-- TODO(oka): use paper-card -->
+ <div>
+ size: [[size]]<br>
+ modificationTime: [[modificationTime]]
+ </div>
+ </div>
+ </template>
+</dom-module>
+
+<script src="files_metadata_box.js"></script>

Powered by Google App Engine
This is Rietveld 408576698