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

Unified Diff: chrome/browser/resources/chromeos/login/encryption_migration.js

Issue 2944703004: Run clang-format on .js files in c/b/r/chromeos (Closed)
Patch Set: 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/chromeos/login/encryption_migration.js
diff --git a/chrome/browser/resources/chromeos/login/encryption_migration.js b/chrome/browser/resources/chromeos/login/encryption_migration.js
index c16691074070ff856b928a71bb06ba10e953faa5..eb750895e5b9f7eebcf6fda576f6f02467a62c71 100644
--- a/chrome/browser/resources/chromeos/login/encryption_migration.js
+++ b/chrome/browser/resources/chromeos/login/encryption_migration.js
@@ -30,67 +30,43 @@ Polymer({
* Current UI state which corresponds to a sub step in migration process.
* @type {EncryptionMigrationUIState}
*/
- uiState: {
- type: Number,
- value: 0
- },
+ uiState: {type: Number, value: 0},
/**
* Current migration progress in range [0, 1]. Negative value means that
* the progress is unknown.
*/
- progress: {
- type: Number,
- value: -1
- },
+ progress: {type: Number, value: -1},
/**
* Whether the current migration is resuming the previous one.
*/
- isResuming: {
- type: Boolean,
- value: false
- },
+ isResuming: {type: Boolean, value: false},
/**
* Battery level.
*/
- batteryPercent: {
- type: Number,
- value: 0
- },
+ batteryPercent: {type: Number, value: 0},
/**
* True if the battery level is enough to start migration.
*/
- isEnoughBattery: {
- type: Boolean,
- value: true
- },
+ isEnoughBattery: {type: Boolean, value: true},
/**
* True if the device is charging.
*/
- isCharging: {
- type: Boolean,
- value: false
- },
+ isCharging: {type: Boolean, value: false},
/**
* Formatted string of the current available space size.
*/
- availableSpaceInString: {
- type: String,
- value: ''
- },
+ availableSpaceInString: {type: String, value: ''},
/**
* Formatted string of the necessary space size for migration.
*/
- necessarySpaceInString: {
- type: String,
- value: ''
- },
+ necessarySpaceInString: {type: String, value: ''},
},
/**

Powered by Google App Engine
This is Rietveld 408576698