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

Unified Diff: chrome/browser/resources/md_history/synced_device_manager.html

Issue 1729263005: MD History: Display synced tabs history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdh_shared_styles
Patch Set: add tests Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_history/synced_device_manager.html
diff --git a/chrome/browser/resources/md_history/synced_device_manager.html b/chrome/browser/resources/md_history/synced_device_manager.html
new file mode 100644
index 0000000000000000000000000000000000000000..a736f1f9972ee0076e6f27aa69e246910a222e9e
--- /dev/null
+++ b/chrome/browser/resources/md_history/synced_device_manager.html
@@ -0,0 +1,26 @@
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.html">
+<link rel="import" href="chrome://resources/html/cr/ui/position_util.html">
+<link rel="import" href="chrome://history/shared_style.html">
+<link rel="import" href="chrome://history/synced_device_card.html">
+
+<dom-module id="synced-device-manager">
+ <style include="shared-style"></style>
+ <template>
+ <style>
+ :host {
+ overflow: auto;
+ padding-top: var(--first-card-padding-top);
+ }
+ </style>
+ <template is="dom-repeat" items="{{syncedDevices}}" as="syncedDevice">
+ <synced-device-card device="{{syncedDevice.device}}"
+ last-update-time="{{syncedDevice.lastUpdateTime}}"
+ tabs="{{syncedDevice.tabs}}">
+ </synced-device-card>
+ </template>
+ </template>
+ <script src="chrome://history/synced_device_manager.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698