| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 2 <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"> |
| 3 <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"> |
| 4 <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"> |
| 5 <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"> |
| 6 <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"> |
| 7 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> | 8 <link rel="import" href="chrome://bookmarks/edit_dialog.html"> |
| 8 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 9 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 10 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 10 | 11 |
| 11 <dom-module id="bookmarks-toolbar"> | 12 <dom-module id="bookmarks-toolbar"> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 <template is="dom-if" if="[[showSelectionOverlay]]"> | 87 <template is="dom-if" if="[[showSelectionOverlay]]"> |
| 87 <cr-toolbar-selection-overlay delete-label="$i18n{delete}" | 88 <cr-toolbar-selection-overlay delete-label="$i18n{delete}" |
| 88 cancel-label="$i18n{cancel}" | 89 cancel-label="$i18n{cancel}" |
| 89 selection-label="[[getItemsSelectedString_(selectedCount_)]]" | 90 selection-label="[[getItemsSelectedString_(selectedCount_)]]" |
| 90 on-clear-selected-items="onClearSelectionTap_"> | 91 on-clear-selected-items="onClearSelectionTap_"> |
| 91 </cr-toolbar-selection-overlay> | 92 </cr-toolbar-selection-overlay> |
| 92 </template> | 93 </template> |
| 93 </template> | 94 </template> |
| 94 <script src="chrome://bookmarks/toolbar.js"></script> | 95 <script src="chrome://bookmarks/toolbar.js"></script> |
| 95 </dom-module> | 96 </dom-module> |
| OLD | NEW |