| 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/iron-scroll-threshold/i
ron-scroll-threshold.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-threshold/i
ron-scroll-threshold.html"> |
| 4 <link rel="import" href="chrome://history/constants.html"> | 4 <link rel="import" href="chrome://chrome/history/constants.html"> |
| 5 <link rel="import" href="chrome://history/history_item.html"> | 5 <link rel="import" href="chrome://chrome/history/history_item.html"> |
| 6 <link rel="import" href="chrome://history/history_list_behavior.html"> | 6 <link rel="import" href="chrome://chrome/history/history_list_behavior.html"> |
| 7 <link rel="import" href="chrome://history/shared_style.html"> | 7 <link rel="import" href="chrome://chrome/history/shared_style.html"> |
| 8 | 8 |
| 9 <dom-module id="history-list"> | 9 <dom-module id="history-list"> |
| 10 <template> | 10 <template> |
| 11 <style include="shared-style"> | 11 <style include="shared-style"> |
| 12 :host { | 12 :host { |
| 13 display: block; | 13 display: block; |
| 14 overflow: auto; | 14 overflow: auto; |
| 15 } | 15 } |
| 16 | 16 |
| 17 history-item { | 17 history-item { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 38 index="[[index]]" | 38 index="[[index]]" |
| 39 tab-index="[[tabIndex]]" | 39 tab-index="[[tabIndex]]" |
| 40 last-focused="{{lastFocused_}}"> | 40 last-focused="{{lastFocused_}}"> |
| 41 </history-item> | 41 </history-item> |
| 42 </template> | 42 </template> |
| 43 </iron-list> | 43 </iron-list> |
| 44 <iron-scroll-threshold id="scroll-threshold" scroll-target="infinite-list" | 44 <iron-scroll-threshold id="scroll-threshold" scroll-target="infinite-list" |
| 45 lower-threshold="500" on-lower-threshold="loadMoreData_"> | 45 lower-threshold="500" on-lower-threshold="loadMoreData_"> |
| 46 </iron-scroll-threshold> | 46 </iron-scroll-threshold> |
| 47 </template> | 47 </template> |
| 48 <script src="chrome://history/history_list.js"></script> | 48 <script src="chrome://chrome/history/history_list.js"></script> |
| 49 </dom-module> | 49 </dom-module> |
| OLD | NEW |