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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_manager.html

Issue 1607403004: MD History: Display synced tabs history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@second_patch
Patch Set: Style fixes & having no synced history will hide the sidebar 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 unified diff | Download patch
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml">
5 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html">
6 <link rel="import" href="chrome://history/synced_device_card.html">
7
8 <dom-module id="synced-device-manager">
9 <template>
10 <style>
11 :host {
12 overflow: auto;
13 }
14
15 .manager {
16 flex: 1;
17 }
calamity 2016/02/02 04:09:48 Pretty sure this does nothing. I think you can als
yingran 2016/02/09 04:21:34 Done.
18 </style>
19 <div class="manager">
20 <template is="dom-repeat" items="{{syncedTabs}}" as="syncedTab">
21 <synced-device-card device="{{syncedTab.device}}"
22 last-update-time="{{syncedTab.lastUpdateTime}}"
23 tabs="{{syncedTab.tabs}}">
24 </synced-device-card>
25 </template>
26 </div>
27 </template>
28 <script src="chrome://history/synced_device_manager.js"></script>
29 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698