| 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-icon/iron-icon.htm
l"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 7 <link rel="import" href="chrome://history/browser_service.html"> | 7 <link rel="import" href="chrome://history/browser_service.html"> |
| 8 <link rel="import" href="chrome://history/icons.html"> | 8 <link rel="import" href="chrome://history/icons.html"> |
| 9 <link rel="import" href="chrome://history/shared_style.html"> | 9 <link rel="import" href="chrome://history/shared_style.html"> |
| 10 | 10 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 } | 174 } |
| 175 </style> | 175 </style> |
| 176 <div id="toolbar-container"> | 176 <div id="toolbar-container"> |
| 177 <cr-toolbar id="main-toolbar" | 177 <cr-toolbar id="main-toolbar" |
| 178 page-name="$i18n{title}" | 178 page-name="$i18n{title}" |
| 179 clear-label="$i18n{clearSearch}" | 179 clear-label="$i18n{clearSearch}" |
| 180 search-prompt="$i18n{searchPrompt}" | 180 search-prompt="$i18n{searchPrompt}" |
| 181 hidden$="[[itemsSelected_]]" | 181 hidden$="[[itemsSelected_]]" |
| 182 spinner-active="[[spinnerActive]]" | 182 spinner-active="[[spinnerActive]]" |
| 183 show-menu="[[hasDrawer]]" | 183 show-menu="[[hasDrawer]]" |
| 184 show-menu-promo="[[showMenuPromo_]]" | 184 show-menu-promo="[[showMenuPromo]]" |
| 185 menu-label="$i18n{historyMenuButton}" | 185 menu-label="$i18n{historyMenuButton}" |
| 186 menu-promo="$i18n{menuPromo}" | 186 menu-promo="$i18n{menuPromo}" |
| 187 close-menu-promo="$i18n{closeMenuPromo}" | 187 close-menu-promo="$i18n{closeMenuPromo}" |
| 188 on-search-changed="onSearchChanged_" | 188 on-search-changed="onSearchChanged_"> |
| 189 on-cr-menu-promo-shown="onMenuPromoShown_"> | |
| 190 <div class="more-actions"> | 189 <div class="more-actions"> |
| 191 <template is="dom-if" if="[[showSyncNotice]]"> | 190 <template is="dom-if" if="[[showSyncNotice]]"> |
| 192 <button is="paper-icon-button-light" id="info-button" | 191 <button is="paper-icon-button-light" id="info-button" |
| 193 on-click="onInfoButtonTap_" | 192 on-click="onInfoButtonTap_" |
| 194 aria-label="$i18n{hasSyncedResultsDescription}"> | 193 aria-label="$i18n{hasSyncedResultsDescription}"> |
| 195 <iron-icon icon="history:info-outline" id="info-button-icon"> | 194 <iron-icon icon="history:info-outline" id="info-button-icon"> |
| 196 </iron-icon> | 195 </iron-icon> |
| 197 </button> | 196 </button> |
| 198 </template> | 197 </template> |
| 199 </div> | 198 </div> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 class="rtl-reversible"></paper-icon-button> | 241 class="rtl-reversible"></paper-icon-button> |
| 243 <paper-icon-button icon="cr:chevron-right" | 242 <paper-icon-button icon="cr:chevron-right" |
| 244 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 243 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 245 class="rtl-reversible"></paper-icon-button> | 244 class="rtl-reversible"></paper-icon-button> |
| 246 </div> | 245 </div> |
| 247 </div> | 246 </div> |
| 248 </template> | 247 </template> |
| 249 </template> | 248 </template> |
| 250 <script src="chrome://history/history_toolbar.js"></script> | 249 <script src="chrome://history/history_toolbar.js"></script> |
| 251 </dom-module> | 250 </dom-module> |
| OLD | NEW |