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

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

Issue 2352553002: [MD History] Run MD History on chrome://chrome/history. (Closed)
Patch Set: Created 4 years, 3 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-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <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-item/paper-item.h tml">
5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html"> 5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html">
6 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 6 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
7 <link rel="import" href="chrome://history/lazy_render.html"> 7 <link rel="import" href="chrome://chrome/history/lazy_render.html">
8 <link rel="import" href="chrome://history/shared_style.html"> 8 <link rel="import" href="chrome://chrome/history/shared_style.html">
9 <link rel="import" href="chrome://history/synced_device_card.html"> 9 <link rel="import" href="chrome://chrome/history/synced_device_card.html">
10 10
11 <dom-module id="history-synced-device-manager"> 11 <dom-module id="history-synced-device-manager">
12 <template> 12 <template>
13 <style include="shared-style cr-shared-style"> 13 <style include="shared-style cr-shared-style">
14 :host { 14 :host {
15 display: block; 15 display: block;
16 overflow: auto; 16 overflow: auto;
17 } 17 }
18 18
19 #illustration { 19 #illustration {
20 background: -webkit-image-set( 20 background: -webkit-image-set(
21 url(chrome://history/images/100/sign_in_promo.png) 1x, 21 url(chrome://chrome/history/images/100/sign_in_promo.png) 1x,
22 url(chrome://history/images/200/sign_in_promo.png) 2x) 22 url(chrome://chrome/history/images/200/sign_in_promo.png) 2x)
23 no-repeat center center; 23 no-repeat center center;
24 height: 222px; 24 height: 222px;
25 margin-top: 100px; 25 margin-top: 100px;
26 width: 594px; 26 width: 594px;
27 } 27 }
28 28
29 #no-synced-tabs { 29 #no-synced-tabs {
30 height: 100%; 30 height: 100%;
31 } 31 }
32 32
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 on-tap="onOpenAllTap_"> 95 on-tap="onOpenAllTap_">
96 $i18n{openAll} 96 $i18n{openAll}
97 </paper-item> 97 </paper-item>
98 <paper-item id="menuDeleteButton" class="menu-item" 98 <paper-item id="menuDeleteButton" class="menu-item"
99 on-tap="onDeleteSessionTap_"> 99 on-tap="onDeleteSessionTap_">
100 $i18n{deleteSession} 100 $i18n{deleteSession}
101 </paper-item> 101 </paper-item>
102 </cr-shared-menu> 102 </cr-shared-menu>
103 </template> 103 </template>
104 </template> 104 </template>
105 <script src="chrome://history/synced_device_manager.js"></script> 105 <script src="chrome://chrome/history/synced_device_manager.js"></script>
106 </dom-module> 106 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/synced_device_card.html ('k') | chrome/browser/resources/vulcanize.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698