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

Unified Diff: chrome/browser/resources/options/chromeos/accounts_user_list.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (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/options/chromeos/accounts_user_list.js
diff --git a/chrome/browser/resources/options/chromeos/accounts_user_list.js b/chrome/browser/resources/options/chromeos/accounts_user_list.js
index 8bb3e3f0fbeafb95e4e8b23bb207d003ae168121..a334e28515422e6098398bfbbf4277f92a083735 100644
--- a/chrome/browser/resources/options/chromeos/accounts_user_list.js
+++ b/chrome/browser/resources/options/chromeos/accounts_user_list.js
@@ -30,10 +30,9 @@ cr.define('options.accounts', function() {
var self = this;
// Listens to pref changes.
- Preferences.getInstance().addEventListener(this.pref,
- function(event) {
- self.load_(event.value.value);
- });
+ Preferences.getInstance().addEventListener(this.pref, function(event) {
+ self.load_(event.value.value);
+ });
},
/**
@@ -187,11 +186,9 @@ cr.define('options.accounts', function() {
*/
updatePicture: function() {
this.icon_.src = 'chrome://userimage/' + this.user.username +
- '?id=' + (new Date()).getTime();
+ '?id=' + (new Date()).getTime();
}
};
- return {
- UserList: UserList
- };
+ return {UserList: UserList};
});

Powered by Google App Engine
This is Rietveld 408576698