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

Unified Diff: chrome/browser/resources/md_bookmarks/command_manager.html

Issue 2834493006: MD Bookmarks: Pull context menu into separate element (Closed)
Patch Set: Further simplify commands Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_bookmarks/command_manager.html
diff --git a/chrome/browser/resources/md_bookmarks/command_manager.html b/chrome/browser/resources/md_bookmarks/command_manager.html
new file mode 100644
index 0000000000000000000000000000000000000000..bc1e5737e4ee4c59436a1ac8259f36d4f24bd006
--- /dev/null
+++ b/chrome/browser/resources/md_bookmarks/command_manager.html
@@ -0,0 +1,37 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action_menu.html">
+<link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_render.html">
+<link rel="import" href="chrome://bookmarks/edit_dialog.html">
+<link rel="import" href="chrome://bookmarks/shared_style.html">
+<link rel="import" href="chrome://bookmarks/store_client.html">
+
+<dom-module id="bookmarks-command-manager">
+ <template>
+ <style include="shared-style">
+ </style>
calamity 2017/04/24 05:20:35 nit: Unnecessary?
tsergeant 2017/04/24 07:28:23 Oops, done.
+ <dialog is="cr-action-menu" id="dropdown" on-mousedown="onMenuMousedown_">
+ <button class="dropdown-item"
+ command="edit"
+ hidden$="[[!canEdit(menuIds_)]]"
+ on-tap="onCommandClick_">
+ [[getEditActionLabel_(menuIds_)]]
+ </button>
+ <button class="dropdown-item"
+ command="copy"
+ hidden$="[[!canCopy(menuIds_)]]"
calamity 2017/04/24 05:20:35 I'm conflicted about whether I want this to be can
tsergeant 2017/04/24 07:28:23 I actually used to have it like canExecute('copy')
calamity 2017/04/26 03:43:44 Yeah, just saw it this morning. Sorry.
+ on-tap="onCommandClick_">
+ $i18n{menuCopyURL}
+ </button>
+ <button class="dropdown-item"
+ command="delete"
+ hidden$="[[!canDelete(menuIds_)]]"
+ on-tap="onCommandClick_">
+ $i18n{menuDelete}
+ </button>
calamity 2017/04/24 05:20:35 I mean, looking at this, there's some part of me t
tsergeant 2017/04/24 07:28:23 The biggest thing that gets in the way of the dom-
calamity 2017/04/26 03:43:44 Fair enough.
+ </dialog>
+ <template is="cr-lazy-render" id="editDialog">
+ <bookmarks-edit-dialog></bookmarks-edit-dialog>
+ </template>
+ </template>
+ <script src="chrome://bookmarks/command_manager.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698