| 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/cr_action_menu/cr_action
_menu.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar_se
lection_overlay.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar_se
lection_overlay.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 8 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> | 8 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> |
| 9 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 9 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 10 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 10 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 <div></div> | 81 <div></div> |
| 82 </button> | 82 </button> |
| 83 </cr-toolbar> | 83 </cr-toolbar> |
| 84 <template is="cr-lazy-render" id="addDialog"> | 84 <template is="cr-lazy-render" id="addDialog"> |
| 85 <bookmarks-edit-dialog></bookmarks-edit-dialog> | 85 <bookmarks-edit-dialog></bookmarks-edit-dialog> |
| 86 </template> | 86 </template> |
| 87 <template is="dom-if" if="[[showSelectionOverlay]]"> | 87 <template is="dom-if" if="[[showSelectionOverlay]]"> |
| 88 <cr-toolbar-selection-overlay delete-label="$i18n{delete}" | 88 <cr-toolbar-selection-overlay delete-label="$i18n{delete}" |
| 89 cancel-label="$i18n{cancel}" | 89 cancel-label="$i18n{cancel}" |
| 90 selection-label="[[getItemsSelectedString_(selectedCount_)]]" | 90 selection-label="[[getItemsSelectedString_(selectedCount_)]]" |
| 91 on-delete-selected-items="onDeleteSelectionTap_" |
| 91 on-clear-selected-items="onClearSelectionTap_"> | 92 on-clear-selected-items="onClearSelectionTap_"> |
| 92 </cr-toolbar-selection-overlay> | 93 </cr-toolbar-selection-overlay> |
| 93 </template> | 94 </template> |
| 94 </template> | 95 </template> |
| 95 <script src="chrome://bookmarks/toolbar.js"></script> | 96 <script src="chrome://bookmarks/toolbar.js"></script> |
| 96 </dom-module> | 97 </dom-module> |
| OLD | NEW |