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

Side by Side Diff: chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.html

Issue 2302483003: Pin keyboard improvements. (Closed)
Patch Set: Remove async. Created 4 years, 3 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 unified diff | Download patch
OLDNEW
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-icon-button/paper -icon-button.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 <inner-text>$i18n{pinKeyboard9}</inner-text> 209 <inner-text>$i18n{pinKeyboard9}</inner-text>
210 </paper-button> 210 </paper-button>
211 </div> 211 </div>
212 <div class="row keyboard bottom-row"> 212 <div class="row keyboard bottom-row">
213 <div class="digit-button"></div> 213 <div class="digit-button"></div>
214 <paper-button class="digit-button" on-tap="onNumberTap_" value="0"> 214 <paper-button class="digit-button" on-tap="onNumberTap_" value="0">
215 <inner-text>$i18n{pinKeyboard0}</inner-text> 215 <inner-text>$i18n{pinKeyboard0}</inner-text>
216 </paper-button> 216 </paper-button>
217 <paper-icon-button class="digit-button backspace-button" 217 <paper-icon-button class="digit-button backspace-button"
218 disabled="[[!hasInput_(value)]]" 218 disabled="[[!hasInput_(value)]]"
219 on-tap="onPinClear_" icon="pin-keyboard:backspace"> 219 icon="pin-keyboard:backspace"
220 on-pointerdown="onBackspacePointerDown_"
221 on-pointerout="onBackspacePointerOut_"
222 on-pointerup="onBackspacePointerUp_">
220 </paper-icon-button> 223 </paper-icon-button>
221 </div> 224 </div>
222 </div> 225 </div>
223 </div> 226 </div>
224 </template> 227 </template>
225 <script src="pin_keyboard.js"></script> 228 <script src="pin_keyboard.js"></script>
226 </dom-module> 229 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698