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

Unified Diff: chrome/browser/resources/md_extensions/shortcut_input.html

Issue 2101933005: [MD Extensions] Implement keyboard shortcuts page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits + latest master Created 4 years, 5 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_extensions/shortcut_input.html
diff --git a/chrome/browser/resources/md_extensions/shortcut_input.html b/chrome/browser/resources/md_extensions/shortcut_input.html
new file mode 100644
index 0000000000000000000000000000000000000000..bac3dbb735fd0cfcc6b7945fa053d1aa72644038
--- /dev/null
+++ b/chrome/browser/resources/md_extensions/shortcut_input.html
@@ -0,0 +1,20 @@
+<link rel="import" href="chrome://resources/html/assert.html">
+<link rel="import" href="chrome://resources/html/cr.html">
+<link rel="import" href="chrome://resources/html/i18n_behavior.html">
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
+<link rel="import" href="chrome://extensions/shortcut_util.html">
+
+<dom-module id="extensions-shortcut-input">
+ <template>
+ <div id="main">
+ <span id="input" tabindex="0">
+ [[computeText_(capturing_, shortcut, pendingShortcut_)]]
+ </span>
+ <paper-icon-button id="clear" icon="clear" on-tap="onClearTap_">
+ </paper-icon-button>
+ </div>
+ </template>
+ <script src="chrome://extensions/shortcut_input.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/md_extensions/service.js ('k') | chrome/browser/resources/md_extensions/shortcut_input.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698