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

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

Issue 2945513002: MD Bookmarks: Add a confirmation dialog before opening many tabs (Closed)
Patch Set: Review comments Created 3 years, 6 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 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/html/cr/ui/command.html"> 5 <link rel="import" href="chrome://resources/html/cr/ui/command.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior /iron-a11y-keys-behavior.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior /iron-a11y-keys-behavior.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="import" href="chrome://bookmarks/store_client.html"> 9 <link rel="import" href="chrome://bookmarks/store_client.html">
10 10
(...skipping 28 matching lines...) Expand all
39 <span class="sublabel"> 39 <span class="sublabel">
40 [[getCommandSublabel_(command, menuIds_)]] 40 [[getCommandSublabel_(command, menuIds_)]]
41 </span> 41 </span>
42 </button> 42 </button>
43 <hr hidden$="[[!showDividerAfter_(command, menuIds_)]]"></hr> 43 <hr hidden$="[[!showDividerAfter_(command, menuIds_)]]"></hr>
44 </template> 44 </template>
45 </dialog> 45 </dialog>
46 <template is="cr-lazy-render" id="editDialog"> 46 <template is="cr-lazy-render" id="editDialog">
47 <bookmarks-edit-dialog></bookmarks-edit-dialog> 47 <bookmarks-edit-dialog></bookmarks-edit-dialog>
48 </template> 48 </template>
49 <template is="cr-lazy-render" id="openDialog">
50 <dialog is="cr-dialog">
51 <div class="title">$i18n{openDialogTitle}</div>
52 <div class="body"></div>
53 <div class="button-container">
54 <paper-button class="cancel-button" on-tap="onOpenCancelTap_">
55 $i18n{cancel}
56 </paper-button>
57 <paper-button class="action-button" on-tap="onOpenConfirmTap_">
58 $i18n{openDialogConfirm}
59 </paper-button>
60 </div>
61 </dialog>
62 </template>
49 </template> 63 </template>
50 <script src="chrome://bookmarks/command_manager.js"></script> 64 <script src="chrome://bookmarks/command_manager.js"></script>
51 </dom-module> 65 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/bookmarks_strings.grdp ('k') | chrome/browser/resources/md_bookmarks/command_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698