| 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-dropdown/iron-drop
down.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.html"> |
| 3 <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/iron-icon/iron-icon.htm
l"> |
| 4 <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-button/paper-butt
on.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 11 <link rel="import" href="chrome://history/icons.html"> | 11 <link rel="import" href="chrome://chrome/history/icons.html"> |
| 12 <link rel="import" href="chrome://history/lazy_render.html"> | 12 <link rel="import" href="chrome://chrome/history/lazy_render.html"> |
| 13 <link rel="import" href="chrome://history/shared_style.html"> | 13 <link rel="import" href="chrome://chrome/history/shared_style.html"> |
| 14 | 14 |
| 15 <dom-module id="history-toolbar"> | 15 <dom-module id="history-toolbar"> |
| 16 <template> | 16 <template> |
| 17 <style include="shared-style"> | 17 <style include="shared-style"> |
| 18 :host { | 18 :host { |
| 19 color: #fff; | 19 color: #fff; |
| 20 display: block; | 20 display: block; |
| 21 transition: background-color 150ms; | 21 transition: background-color 150ms; |
| 22 width: 100%; | 22 width: 100%; |
| 23 } | 23 } |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 <paper-icon-button icon="history:chevron-left" | 220 <paper-icon-button icon="history:chevron-left" |
| 221 alt="$i18n{rangePrevious}" title="$i18n{rangePrevious}" | 221 alt="$i18n{rangePrevious}" title="$i18n{rangePrevious}" |
| 222 class="rtl-reversible"></paper-icon-button> | 222 class="rtl-reversible"></paper-icon-button> |
| 223 <paper-icon-button icon="cr:chevron-right" | 223 <paper-icon-button icon="cr:chevron-right" |
| 224 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 224 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 225 class="rtl-reversible"></paper-icon-button> | 225 class="rtl-reversible"></paper-icon-button> |
| 226 </div> | 226 </div> |
| 227 </div> | 227 </div> |
| 228 </template> | 228 </template> |
| 229 </template> | 229 </template> |
| 230 <script src="chrome://history/history_toolbar.js"></script> | 230 <script src="chrome://chrome/history/history_toolbar.js"></script> |
| 231 </dom-module> | 231 </dom-module> |
| OLD | NEW |