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