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

Unified Diff: chrome/browser/resources/settings/people_page/lock_state_behavior.js

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
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 */

Powered by Google App Engine
This is Rietveld 408576698