Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> |
| 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.html"> | 5 <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/iron-icons/hardware-ico ns.html"> | |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> |
| 8 <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"> |
| 9 <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"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html"> |
| 11 <link rel="import" href="chrome://history/shared_style.html"> | 10 <link rel="import" href="chrome://history/shared_style.html"> |
| 11 <link rel="import" href="chrome://history/icons.html"> | |
|
tsergeant
2016/05/25 04:33:20
Nit: Alphabetical order puts this above shared_sty
calamity
2016/05/25 05:59:24
Done.
| |
| 12 | 12 |
| 13 <dom-module id="history-toolbar"> | 13 <dom-module id="history-toolbar"> |
| 14 <template> | 14 <template> |
| 15 <style include="shared-style"> | 15 <style include="shared-style"> |
| 16 :host { | 16 :host { |
| 17 color: #fff; | 17 color: #fff; |
| 18 transition: background-color 150ms; | 18 transition: background-color 150ms; |
| 19 width: 100%; | 19 width: 100%; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 189 <paper-tabs attr-for-selected="value" selected="{{groupedRange}}" | 189 <paper-tabs attr-for-selected="value" selected="{{groupedRange}}" |
| 190 id="grouped-range-buttons"> | 190 id="grouped-range-buttons"> |
| 191 <paper-tab value="0">$i18n{rangeAllTime}</paper-tab> | 191 <paper-tab value="0">$i18n{rangeAllTime}</paper-tab> |
| 192 <paper-tab value="1">$i18n{rangeWeek}</paper-tab> | 192 <paper-tab value="1">$i18n{rangeWeek}</paper-tab> |
| 193 <paper-tab value="2">$i18n{rangeMonth}</paper-tab> | 193 <paper-tab value="2">$i18n{rangeMonth}</paper-tab> |
| 194 </paper-tabs> | 194 </paper-tabs> |
| 195 <div id="grouped-nav-container"> | 195 <div id="grouped-nav-container"> |
| 196 <span id="grouped-date"> | 196 <span id="grouped-date"> |
| 197 {{getHistoryInterval_(queryStartTime, queryEndTime)}} | 197 {{getHistoryInterval_(queryStartTime, queryEndTime)}} |
| 198 </span> | 198 </span> |
| 199 <paper-icon-button icon="today" alt="$i18n{rangeToday}" | 199 <paper-icon-button icon="history:today" alt="$i18n{rangeToday}" |
| 200 title="$i18n{rangeToday}"></paper-icon-button> | 200 title="$i18n{rangeToday}"></paper-icon-button> |
| 201 <paper-icon-button icon="hardware:keyboard-arrow-left" | 201 <paper-icon-button icon="history:keyboard-arrow-left" |
|
tsergeant
2016/05/25 04:33:19
Probably should have caught this last review, but:
calamity
2016/05/25 05:59:24
Done.
| |
| 202 alt="$i18n{rangePrevious}" title="$i18n{rangePrevious}" | 202 alt="$i18n{rangePrevious}" title="$i18n{rangePrevious}" |
| 203 class="rtl-reversible"></paper-icon-button> | 203 class="rtl-reversible"></paper-icon-button> |
| 204 <paper-icon-button icon="hardware:keyboard-arrow-right" | 204 <paper-icon-button icon="history:keyboard-arrow-right" |
| 205 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 205 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
| 206 class="rtl-reversible"></paper-icon-button> | 206 class="rtl-reversible"></paper-icon-button> |
| 207 </div> | 207 </div> |
| 208 </div> | 208 </div> |
| 209 </template> | 209 </template> |
| 210 </template> | 210 </template> |
| 211 <script src="chrome://history/history_toolbar.js"></script> | 211 <script src="chrome://history/history_toolbar.js"></script> |
| 212 </dom-module> | 212 </dom-module> |
| OLD | NEW |