| OLD | NEW |
| 1 <!-- TODO(crbug.com/603217): Use i18n instead of string literals. Figure out | 1 <!-- TODO(crbug.com/603217): Use i18n instead of string literals. Figure out |
| 2 what i18n to use for keypad, ie, does 1 ABC make | 2 what i18n to use for keypad, ie, does 1 ABC make |
| 3 sense in every scenario? --> | 3 sense in every scenario? --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/html/polymer.html"> | 7 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> |
| 12 | 12 |
| 13 <iron-iconset-svg name="pin-keyboard" size="24"> | 13 <iron-iconset-svg name="pin-keyboard" size="24"> |
| 14 <svg> | 14 <svg> |
| 15 <defs> | 15 <defs> |
| 16 <!-- | 16 <!-- |
| 17 Inlined from Polymer's iron-icons to avoid importing everything. | 17 Inlined from Polymer's iron-icons to avoid importing everything. |
| 18 See http://goo.gl/Y1OdAq for instructions on adding additional icons. | 18 See http://goo.gl/Y1OdAq for instructions on adding additional icons. |
| 19 --> | 19 --> |
| 20 <g id="forward"><path d="M12 8V4l8 8-8 8v-4H4V8z"></path></g> | 20 <g id="forward"><path d="M12 8V4l8 8-8 8v-4H4V8z"></path></g> |
| 21 </defs> | 21 </defs> |
| 22 </svg> | 22 </svg> |
| 23 </iron-iconset-svg> | 23 </iron-iconset-svg> |
| 24 | 24 |
| 25 <dom-module id="pin-keyboard"> | 25 <dom-module id="pin-keyboard"> |
| 26 <template> | 26 <template> |
| 27 <style> | 27 <style> |
| 28 #root { | 28 #root { |
| 29 direction: ltr; | 29 direction: ltr; |
| 30 display: flex; | 30 display: flex; |
| 31 } | 31 } |
| 32 | 32 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 <inner-text class="icon-subheading"> | 219 <inner-text class="icon-subheading"> |
| 220 $i18n{pinKeyboardClear} | 220 $i18n{pinKeyboardClear} |
| 221 </inner-text> | 221 </inner-text> |
| 222 </paper-button> | 222 </paper-button> |
| 223 </div> | 223 </div> |
| 224 </div> | 224 </div> |
| 225 </div> | 225 </div> |
| 226 </template> | 226 </template> |
| 227 <script src="pin_keyboard.js"></script> | 227 <script src="pin_keyboard.js"></script> |
| 228 </dom-module> | 228 </dom-module> |
| OLD | NEW |