| 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/polymer/v1_0/paper-menu/paper-menu.h
tml"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared
_menu.html"> |
| 6 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html"> | |
| 7 <link rel="import" href="chrome://history/shared_style.html"> | 6 <link rel="import" href="chrome://history/shared_style.html"> |
| 8 <link rel="import" href="chrome://history/synced_device_card.html"> | 7 <link rel="import" href="chrome://history/synced_device_card.html"> |
| 9 | 8 |
| 10 <dom-module id="history-synced-device-manager"> | 9 <dom-module id="history-synced-device-manager"> |
| 11 <style include="shared-style"></style> | |
| 12 <template> | 10 <template> |
| 13 <style> | 11 <style include="shared-style"> |
| 14 :host { | 12 :host { |
| 15 display: block; | 13 display: block; |
| 16 overflow: auto; | 14 overflow: auto; |
| 17 } | 15 } |
| 18 | 16 |
| 19 #illustration { | 17 #illustration { |
| 20 background: -webkit-image-set( | 18 background: -webkit-image-set( |
| 21 url(chrome://history/images/100/sign_in_promo.png) 1x, | 19 url(chrome://history/images/100/sign_in_promo.png) 1x, |
| 22 url(chrome://history/images/200/sign_in_promo.png) 2x) | 20 url(chrome://history/images/200/sign_in_promo.png) 2x) |
| 23 no-repeat center center; | 21 no-repeat center center; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 </div> | 78 </div> |
| 81 <div id="sign-in-guide" | 79 <div id="sign-in-guide" |
| 82 hidden="[[!showSignInGuide(signInState_, guestSession_)]]"> | 80 hidden="[[!showSignInGuide(signInState_, guestSession_)]]"> |
| 83 <div id="illustration"></div> | 81 <div id="illustration"></div> |
| 84 <div id="sign-in-promo">$i18n{signInPromo}</div> | 82 <div id="sign-in-promo">$i18n{signInPromo}</div> |
| 85 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> | 83 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> |
| 86 <paper-button id="sign-in-button" on-tap="onSignInTap_"> | 84 <paper-button id="sign-in-button" on-tap="onSignInTap_"> |
| 87 $i18n{signInButton} | 85 $i18n{signInButton} |
| 88 </paper-button> | 86 </paper-button> |
| 89 </div> | 87 </div> |
| 88 |
| 89 <cr-shared-menu id="menu"> |
| 90 <paper-item class="menu-item" on-tap="onOpenAllTap_"> |
| 91 $i18n{openAll} |
| 92 </paper-item> |
| 93 <paper-item class="menu-item" on-tap="onDeleteSessionTap_"> |
| 94 $i18n{deleteSession} |
| 95 </paper-item> |
| 96 </cr-shared-menu> |
| 90 </template> | 97 </template> |
| 91 <script src="chrome://history/synced_device_manager.js"></script> | 98 <script src="chrome://history/synced_device_manager.js"></script> |
| 92 </dom-module> | 99 </dom-module> |
| OLD | NEW |