OLD | NEW |
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://history/lazy_render.html"> | 6 <link rel="import" href="chrome://history/lazy_render.html"> |
7 <link rel="import" href="chrome://history/shared_style.html"> | 7 <link rel="import" href="chrome://history/shared_style.html"> |
8 <link rel="import" href="chrome://history/synced_device_card.html"> | 8 <link rel="import" href="chrome://history/synced_device_card.html"> |
9 | 9 |
10 <dom-module id="history-synced-device-manager"> | 10 <dom-module id="history-synced-device-manager"> |
11 <template> | 11 <template> |
12 <style include="shared-style"> | 12 <style include="shared-style"> |
13 :host { | 13 :host { |
14 display: block; | 14 display: block; |
15 overflow: overlay; | 15 overflow: auto; |
16 } | 16 } |
17 | 17 |
18 #illustration { | 18 #illustration { |
19 background: -webkit-image-set( | 19 background: -webkit-image-set( |
20 url(chrome://history/images/100/sign_in_promo.png) 1x, | 20 url(chrome://history/images/100/sign_in_promo.png) 1x, |
21 url(chrome://history/images/200/sign_in_promo.png) 2x) | 21 url(chrome://history/images/200/sign_in_promo.png) 2x) |
22 no-repeat center center; | 22 no-repeat center center; |
23 height: 222px; | 23 height: 222px; |
24 margin-top: 100px; | 24 margin-top: 100px; |
25 width: 594px; | 25 width: 594px; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 </paper-item> | 96 </paper-item> |
97 <paper-item id="menuDeleteButton" class="menu-item" | 97 <paper-item id="menuDeleteButton" class="menu-item" |
98 on-tap="onDeleteSessionTap_"> | 98 on-tap="onDeleteSessionTap_"> |
99 $i18n{deleteSession} | 99 $i18n{deleteSession} |
100 </paper-item> | 100 </paper-item> |
101 </cr-shared-menu> | 101 </cr-shared-menu> |
102 </template> | 102 </template> |
103 </template> | 103 </template> |
104 <script src="chrome://history/synced_device_manager.js"></script> | 104 <script src="chrome://history/synced_device_manager.js"></script> |
105 </dom-module> | 105 </dom-module> |
OLD | NEW |