Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | |
|
michaelpg
2016/07/08 07:12:33
+assert.html
Devlin
2016/07/08 23:14:43
Done.
| |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> | |
| 6 <link rel="import" href="chrome://extensions/shortcut_util.html"> | |
| 7 | |
| 8 <dom-module id="extensions-shortcut-input"> | |
| 9 <template> | |
| 10 <div id="main"> | |
| 11 <span id="input" tabindex="0"> | |
| 12 [[computeText_(capturing_, shortcut, pendingShortcut_)]] | |
| 13 </span> | |
| 14 <paper-icon-button id="clear" icon="clear" on-tap="onClearTap_"> | |
| 15 </paper-icon-button> | |
| 16 </div> | |
| 17 </template> | |
| 18 <script src="chrome://extensions/shortcut_input.js"></script> | |
| 19 </dom-module> | |
| OLD | NEW |