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://bookmarks/list.html"> |
2 <link rel="import" href="chrome://bookmarks/shared_vars.html"> | 3 <link rel="import" href="chrome://bookmarks/shared_vars.html"> |
| 4 <link rel="import" href="chrome://bookmarks/sidebar.html"> |
3 <link rel="import" href="chrome://bookmarks/store.html"> | 5 <link rel="import" href="chrome://bookmarks/store.html"> |
4 <link rel="import" href="chrome://bookmarks/toolbar.html"> | 6 <link rel="import" href="chrome://bookmarks/toolbar.html"> |
5 | 7 |
6 <dom-module id="bookmarks-app"> | 8 <dom-module id="bookmarks-app"> |
7 <template> | 9 <template> |
8 <style> | 10 <style> |
9 :host { | 11 :host { |
10 display: flex; | 12 display: flex; |
11 flex-direction: column; | 13 flex-direction: column; |
12 height: 100%; | 14 height: 100%; |
(...skipping 21 matching lines...) Expand all Loading... |
34 </bookmarks-sidebar> | 36 </bookmarks-sidebar> |
35 <bookmarks-list selected-node="[[selectedNode]]"></bookmarks-list> | 37 <bookmarks-list selected-node="[[selectedNode]]"></bookmarks-list> |
36 </div> | 38 </div> |
37 <bookmarks-store selected-id="{{selectedId}}" | 39 <bookmarks-store selected-id="{{selectedId}}" |
38 selected-node="{{selectedNode}}" | 40 selected-node="{{selectedNode}}" |
39 root-node="{{rootNode}}"> | 41 root-node="{{rootNode}}"> |
40 </bookmarks-store> | 42 </bookmarks-store> |
41 </template> | 43 </template> |
42 <script src="chrome://bookmarks/app.js"></script> | 44 <script src="chrome://bookmarks/app.js"></script> |
43 </dom-module> | 45 </dom-module> |
OLD | NEW |