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

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

Issue 2046303002: [MD History] Add history-searched-label to embolden the synced device search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disable_grouped
Patch Set: 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 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"> 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"> 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"> 5 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html">
6 <link rel="import" href="chrome://history/shared_style.html"> 6 <link rel="import" href="chrome://history/shared_style.html">
7 <link rel="import" href="chrome://history/synced_device_card.html"> 7 <link rel="import" href="chrome://history/synced_device_card.html">
8 8
9 <dom-module id="history-synced-device-manager"> 9 <dom-module id="history-synced-device-manager">
10 <style include="shared-style"></style> 10 <style include="shared-style"></style>
11 <template> 11 <template>
12 <style> 12 <style>
13 :host { 13 :host {
14 overflow: auto; 14 overflow: auto;
15 padding-top: var(--first-card-padding-top); 15 padding-top: var(--first-card-padding-top);
16 } 16 }
17 </style> 17 </style>
18 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice"> 18 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice">
19 <history-synced-device-card device="[[syncedDevice.device]]" 19 <history-synced-device-card device="[[syncedDevice.device]]"
20 last-update-time="[[syncedDevice.lastUpdateTime]]" 20 last-update-time="[[syncedDevice.lastUpdateTime]]"
21 tabs="[[syncedDevice.tabs]]" 21 tabs="[[syncedDevice.tabs]]"
22 separator-indexes="[[syncedDevice.separatorIndexes]]"> 22 separator-indexes="[[syncedDevice.separatorIndexes]]",
tsergeant 2016/06/08 07:25:06 No need for the , here
calamity 2016/06/14 01:51:45 Done.
23 searched-term="[[searchedTerm]]">
23 </history-synced-device-card> 24 </history-synced-device-card>
24 </template> 25 </template>
25 </template> 26 </template>
26 <script src="chrome://history/synced_device_manager.js"></script> 27 <script src="chrome://history/synced_device_manager.js"></script>
27 </dom-module> 28 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698