| OLD | NEW |
| 1 <!-- New-style store: --> | |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://bookmarks/reducers.html"> | 2 <link rel="import" href="chrome://bookmarks/reducers.html"> |
| 4 <link rel="import" href="chrome://bookmarks/util.html"> | 3 <link rel="import" href="chrome://bookmarks/util.html"> |
| 5 <script src="chrome://bookmarks/bookmarks_store.js"></script> | 4 <script src="chrome://bookmarks/store.js"></script> |
| 6 | |
| 7 <!-- Old-style store: --> | |
| 8 <!-- TODO(tsergeant): Remove this version of the store once it is unused. --> | |
| 9 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 10 <link rel="import" href="chrome://bookmarks/router.html"> | |
| 11 <dom-module id="bookmarks-store"> | |
| 12 <template> | |
| 13 <bookmarks-router id="router" search-term="[[searchTerm]]" | |
| 14 selected-id="[[selectedId]]"></bookmarks-router> | |
| 15 </template> | |
| 16 <script src="chrome://bookmarks/store.js"></script> | |
| 17 </dom-module> | |
| OLD | NEW |