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

Unified Diff: ui/login/account_picker/user_pod_row.js

Issue 1107223003: signin: Remove username from logs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/account_picker/user_pod_row.js
diff --git a/ui/login/account_picker/user_pod_row.js b/ui/login/account_picker/user_pod_row.js
index 7119e9ae1e8ceb549463c29a665141462a4d2b16..a8b257f8afbc6b58187e711f8572206aa597f220 100644
--- a/ui/login/account_picker/user_pod_row.js
+++ b/ui/login/account_picker/user_pod_row.js
@@ -2435,8 +2435,7 @@ cr.define('login', function() {
showUserPodCustomIcon: function(username, icon) {
var pod = this.getPodWithUsername_(username);
if (pod == null) {
- console.error('Unable to show user pod button for ' + username +
- ': user pod not found.');
+ console.error('Unable to show user pod button: user pod not found.');
return;
}
@@ -2498,8 +2497,7 @@ cr.define('login', function() {
hideUserPodCustomIcon: function(username) {
var pod = this.getPodWithUsername_(username);
if (pod == null) {
- console.error('Unable to hide user pod button for ' + username +
- ': user pod not found.');
+ console.error('Unable to hide user pod button: user pod not found.');
return;
}
@@ -2517,8 +2515,7 @@ cr.define('login', function() {
setAuthType: function(username, authType, value) {
var pod = this.getPodWithUsername_(username);
if (pod == null) {
- console.error('Unable to set auth type for ' + username +
- ': user pod not found.');
+ console.error('Unable to set auth type: user pod not found.');
return;
}
pod.setAuthType(authType, value);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698