| 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 3e5a90cce0a54676ff2411e3b9c58eb21d45c7a0..ac6762b2e658c2f932e1143382ec286c39d1f1fb 100644
|
| --- a/chrome/browser/resources/settings/people_page/lock_state_behavior.js
|
| +++ b/chrome/browser/resources/settings/people_page/lock_state_behavior.js
|
| @@ -22,11 +22,8 @@ var LockStateBehavior = {
|
| * The currently selected unlock type.
|
| * @type {!LockScreenUnlockType}
|
| */
|
| - selectedUnlockType: {
|
| - type: String,
|
| - notify: true,
|
| - value: LockScreenUnlockType.VALUE_PENDING
|
| - },
|
| + selectedUnlockType:
|
| + {type: String, notify: true, value: LockScreenUnlockType.VALUE_PENDING},
|
|
|
| /**
|
| * True/false if there is a PIN set; undefined if the computation is still
|
| @@ -34,19 +31,13 @@ var LockStateBehavior = {
|
| * can change the selectedUnlockType before setting up a PIN.
|
| * @type {boolean|undefined}
|
| */
|
| - hasPin: {
|
| - type: Boolean,
|
| - notify: true
|
| - },
|
| + hasPin: {type: Boolean, notify: true},
|
|
|
| /**
|
| * Interface for chrome.quickUnlockPrivate calls. May be overriden by tests.
|
| * @private
|
| */
|
| - quickUnlockPrivate_: {
|
| - type: Object,
|
| - value: chrome.quickUnlockPrivate
|
| - },
|
| + quickUnlockPrivate_: {type: Object, value: chrome.quickUnlockPrivate},
|
| },
|
|
|
| /** @override */
|
|
|