| 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/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 6 <link rel="import" href="chrome://bookmarks/actions.html"> | 6 <link rel="import" href="chrome://bookmarks/actions.html"> |
| 7 <link rel="import" href="chrome://bookmarks/command_manager.html"> | 7 <link rel="import" href="chrome://bookmarks/command_manager.html"> |
| 8 <link rel="import" href="chrome://bookmarks/icons.html"> | 8 <link rel="import" href="chrome://bookmarks/icons.html"> |
| 9 <link rel="import" href="chrome://bookmarks/mouse_focus_behavior.html"> |
| 9 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 10 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 10 <link rel="import" href="chrome://bookmarks/store_client.html"> | 11 <link rel="import" href="chrome://bookmarks/store_client.html"> |
| 11 | 12 |
| 12 <dom-module id="bookmarks-folder-node"> | 13 <dom-module id="bookmarks-folder-node"> |
| 13 <template> | 14 <template> |
| 14 <style include="shared-style"> | 15 <style include="shared-style"> |
| 15 :host { | 16 :host { |
| 16 --padding-start-per-depth: 36px; | 17 --padding-start-per-depth: 36px; |
| 17 display: block; | 18 display: block; |
| 18 } | 19 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 as="child" | 104 as="child" |
| 104 filter="isFolder_"> | 105 filter="isFolder_"> |
| 105 <bookmarks-folder-node item-id="[[child]]" | 106 <bookmarks-folder-node item-id="[[child]]" |
| 106 depth="[[getChildDepth_(depth)]]"> | 107 depth="[[getChildDepth_(depth)]]"> |
| 107 </bookmarks-folder-node> | 108 </bookmarks-folder-node> |
| 108 </template> | 109 </template> |
| 109 </div> | 110 </div> |
| 110 </template> | 111 </template> |
| 111 <script src="chrome://bookmarks/folder_node.js"></script> | 112 <script src="chrome://bookmarks/folder_node.js"></script> |
| 112 </dom-module> | 113 </dom-module> |
| OLD | NEW |