| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 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-list/iron-list.htm
l"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 5 <link rel="import" href="chrome://bookmarks/item.html"> | 6 <link rel="import" href="chrome://bookmarks/item.html"> |
| 6 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 7 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 7 <link rel="import" href="chrome://bookmarks/store_client.html"> | 8 <link rel="import" href="chrome://bookmarks/store_client.html"> |
| 8 <link rel="import" href="chrome://bookmarks/util.html"> | 9 <link rel="import" href="chrome://bookmarks/util.html"> |
| 9 | 10 |
| 10 <dom-module id="bookmarks-list"> | 11 <dom-module id="bookmarks-list"> |
| 11 <template> | 12 <template> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 42 </bookmarks-item> | 43 </bookmarks-item> |
| 43 </template> | 44 </template> |
| 44 </iron-list> | 45 </iron-list> |
| 45 <div id="message" class="centered-message" | 46 <div id="message" class="centered-message" |
| 46 hidden$="[[!isEmptyList_(displayedList_.length)]]"> | 47 hidden$="[[!isEmptyList_(displayedList_.length)]]"> |
| 47 [[emptyListMessage_(searchTerm_)]] | 48 [[emptyListMessage_(searchTerm_)]] |
| 48 </div> | 49 </div> |
| 49 </template> | 50 </template> |
| 50 <script src="chrome://bookmarks/list.js"></script> | 51 <script src="chrome://bookmarks/list.js"></script> |
| 51 </dom-module> | 52 </dom-module> |
| OLD | NEW |