Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html"> | 3 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html"> |
| 4 <link rel="import" href="chrome://bookmarks/api_listener.html"> | 4 <link rel="import" href="chrome://bookmarks/api_listener.html"> |
| 5 <link rel="import" href="chrome://bookmarks/command_manager.html"> | 5 <link rel="import" href="chrome://bookmarks/command_manager.html"> |
| 6 <link rel="import" href="chrome://bookmarks/constants.html"> | 6 <link rel="import" href="chrome://bookmarks/constants.html"> |
| 7 <link rel="import" href="chrome://bookmarks/dialog_focus_manager.html"> | |
|
tsergeant
2017/06/28 04:49:18
Nit: Do you mind importing this in the places wher
calamity
2017/06/29 06:19:34
Done.
| |
| 7 <link rel="import" href="chrome://bookmarks/dnd_manager.html"> | 8 <link rel="import" href="chrome://bookmarks/dnd_manager.html"> |
| 9 <link rel="import" href="chrome://bookmarks/folder_node.html"> | |
| 8 <link rel="import" href="chrome://bookmarks/list.html"> | 10 <link rel="import" href="chrome://bookmarks/list.html"> |
| 9 <link rel="import" href="chrome://bookmarks/router.html"> | 11 <link rel="import" href="chrome://bookmarks/router.html"> |
| 10 <link rel="import" href="chrome://bookmarks/shared_vars.html"> | 12 <link rel="import" href="chrome://bookmarks/shared_vars.html"> |
| 11 <link rel="import" href="chrome://bookmarks/store.html"> | 13 <link rel="import" href="chrome://bookmarks/store.html"> |
| 12 <link rel="import" href="chrome://bookmarks/toast_manager.html"> | 14 <link rel="import" href="chrome://bookmarks/toast_manager.html"> |
| 13 <link rel="import" href="chrome://bookmarks/toolbar.html"> | 15 <link rel="import" href="chrome://bookmarks/toolbar.html"> |
| 14 <link rel="import" href="chrome://bookmarks/folder_node.html"> | |
| 15 <link rel="import" href="chrome://bookmarks/util.html"> | 16 <link rel="import" href="chrome://bookmarks/util.html"> |
| 16 | 17 |
| 17 <dom-module id="bookmarks-app"> | 18 <dom-module id="bookmarks-app"> |
| 18 <template> | 19 <template> |
| 19 <style> | 20 <style> |
| 20 :host { | 21 :host { |
| 21 color: var(--primary-text-color); | 22 color: var(--primary-text-color); |
| 22 display: flex; | 23 display: flex; |
| 23 flex-direction: column; | 24 flex-direction: column; |
| 24 height: 100%; | 25 height: 100%; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 </div> | 75 </div> |
| 75 <div id="splitter"></div> | 76 <div id="splitter"></div> |
| 76 <bookmarks-list></bookmarks-list> | 77 <bookmarks-list></bookmarks-list> |
| 77 </div> | 78 </div> |
| 78 <bookmarks-router></bookmarks-router> | 79 <bookmarks-router></bookmarks-router> |
| 79 <bookmarks-command-manager></bookmarks-command-manager> | 80 <bookmarks-command-manager></bookmarks-command-manager> |
| 80 <bookmarks-toast-manager duration="5000"></bookmarks-toast-manager> | 81 <bookmarks-toast-manager duration="5000"></bookmarks-toast-manager> |
| 81 </template> | 82 </template> |
| 82 <script src="chrome://bookmarks/app.js"></script> | 83 <script src="chrome://bookmarks/app.js"></script> |
| 83 </dom-module> | 84 </dom-module> |
| OLD | NEW |