| Index: chrome/browser/resources/settings/people_page/lock_state_behavior.js
|
| diff --git a/chrome/browser/resources/settings/people_page/lock_state_behavior.js b/chrome/browser/resources/settings/people_page/lock_state_behavior.js
|
| index ac6762b2e658c2f932e1143382ec286c39d1f1fb..d40f58e59fc9deca33ccac813728edf73b3c7f48 100644
|
| --- a/chrome/browser/resources/settings/people_page/lock_state_behavior.js
|
| +++ b/chrome/browser/resources/settings/people_page/lock_state_behavior.js
|
| @@ -63,7 +63,7 @@ var LockStateBehavior = {
|
| * @private
|
| */
|
| updateUnlockType_: function() {
|
| - this.quickUnlockPrivate_.getActiveModes(function(modes) {
|
| + this.quickUnlockPrivate_.getActiveModes(modes => {
|
| if (modes.includes(chrome.quickUnlockPrivate.QuickUnlockMode.PIN)) {
|
| this.hasPin = true;
|
| this.selectedUnlockType = LockScreenUnlockType.PIN_PASSWORD;
|
| @@ -71,6 +71,6 @@ var LockStateBehavior = {
|
| this.hasPin = false;
|
| this.selectedUnlockType = LockScreenUnlockType.PASSWORD;
|
| }
|
| - }.bind(this));
|
| + });
|
| },
|
| };
|
|
|