| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| 6 <link rel="import" href="../controls/settings_toggle_button.html"> | 6 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 7 <link rel="import" href="easy_unlock_browser_proxy.html"> | 7 <link rel="import" href="easy_unlock_browser_proxy.html"> |
| 8 <link rel="import" href="easy_unlock_turn_off_dialog.html"> | 8 <link rel="import" href="easy_unlock_turn_off_dialog.html"> |
| 9 <link rel="import" href="fingerprint_browser_proxy.html"> | 9 <link rel="import" href="fingerprint_browser_proxy.html"> |
| 10 <link rel="import" href="lock_screen_constants.html"> | 10 <link rel="import" href="lock_screen_constants.html"> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 } | 39 } |
| 40 </style> | 40 </style> |
| 41 | 41 |
| 42 <div> | 42 <div> |
| 43 <template is="dom-if" if="[[quickUnlockEnabled_]]"> | 43 <template is="dom-if" if="[[quickUnlockEnabled_]]"> |
| 44 <div class="list-frame"> | 44 <div class="list-frame"> |
| 45 <paper-radio-group id="unlockType" selected="{{selectedUnlockType}}"> | 45 <paper-radio-group id="unlockType" selected="{{selectedUnlockType}}"> |
| 46 <paper-radio-button name="password"> | 46 <paper-radio-button name="password"> |
| 47 <div class="start"> | 47 <div class="start"> |
| 48 $i18n{lockScreenPasswordOnly} | 48 $i18n{lockScreenPasswordOnly} |
| 49 <div class="secondary"> | |
| 50 $i18n{lockScreenHighSecurity} | |
| 51 </div> | |
| 52 </div> | 49 </div> |
| 53 </paper-radio-button> | 50 </paper-radio-button> |
| 54 <paper-radio-button name="pin+password"> | 51 <paper-radio-button name="pin+password"> |
| 55 <div class="start"> | 52 <div class="start"> |
| 56 $i18n{lockScreenPinOrPassword} | 53 $i18n{lockScreenPinOrPassword} |
| 57 <div class="secondary"> | |
| 58 $i18n{lockScreenMediumSecurity} | |
| 59 </div> | |
| 60 </div> | 54 </div> |
| 61 <template is="dom-if" | 55 <template is="dom-if" |
| 62 if="[[showConfigurePinButton_(selectedUnlockType)]]"> | 56 if="[[showConfigurePinButton_(selectedUnlockType)]]"> |
| 63 <paper-button id="setupPinButton" class="secondary-button" | 57 <paper-button id="setupPinButton" class="secondary-button" |
| 64 on-tap="onConfigurePin_"> | 58 on-tap="onConfigurePin_"> |
| 65 [[getSetupPinText_(hasPin)]] | 59 [[getSetupPinText_(hasPin)]] |
| 66 </paper-button> | 60 </paper-button> |
| 67 </template> | 61 </template> |
| 68 </paper-radio-button> | 62 </paper-radio-button> |
| 69 </paper-radio-group> | 63 </paper-radio-group> |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 145 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 152 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 146 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 153 on-close="onEasyUnlockTurnOffDialogClose_"> | 147 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 154 </easy-unlock-turn-off-dialog> | 148 </easy-unlock-turn-off-dialog> |
| 155 </template> | 149 </template> |
| 156 </div> | 150 </div> |
| 157 </template> | 151 </template> |
| 158 | 152 |
| 159 <script src="lock_screen.js"></script> | 153 <script src="lock_screen.js"></script> |
| 160 </dom-module> | 154 </dom-module> |
| OLD | NEW |