Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1618)

Side by Side Diff: chrome/browser/resources/md_bookmarks/toolbar.html

Issue 2893833002: MD Bookmarks: Enable the delete button in the toolbar overlay (Closed)
Patch Set: Reparent Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 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_lazy_render/cr_lazy_r ender.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_toolbar/cr_toolbar.ht ml"> 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_se lection_overlay.html"> 5 <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"> 6 <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"> 7 <link rel="import" href="chrome://bookmarks/edit_dialog.html">
8 <link rel="import" href="chrome://bookmarks/shared_style.html"> 8 <link rel="import" href="chrome://bookmarks/shared_style.html">
9 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 9 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 <div></div> 80 <div></div>
81 </button> 81 </button>
82 </cr-toolbar> 82 </cr-toolbar>
83 <template is="cr-lazy-render" id="addDialog"> 83 <template is="cr-lazy-render" id="addDialog">
84 <bookmarks-edit-dialog></bookmarks-edit-dialog> 84 <bookmarks-edit-dialog></bookmarks-edit-dialog>
85 </template> 85 </template>
86 <template is="dom-if" if="[[showSelectionOverlay]]"> 86 <template is="dom-if" if="[[showSelectionOverlay]]">
87 <cr-toolbar-selection-overlay delete-label="$i18n{delete}" 87 <cr-toolbar-selection-overlay delete-label="$i18n{delete}"
88 cancel-label="$i18n{cancel}" 88 cancel-label="$i18n{cancel}"
89 selection-label="[[getItemsSelectedString_(selectedCount_)]]" 89 selection-label="[[getItemsSelectedString_(selectedCount_)]]"
90 on-delete-selected-items="onDeleteSelectionTap_"
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698