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

Unified Diff: chrome/browser/resources/login/user_pod_row.js

Issue 289013002: cros: Clean up screenlockPrivate plumbing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test compile Created 6 years, 7 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/login/user_pod_row.js
diff --git a/chrome/browser/resources/login/user_pod_row.js b/chrome/browser/resources/login/user_pod_row.js
index d5e30dc2080916bcc39da6f712193b1cb41330c4..19bd6895157f5ddcc8ff23fb8c2c2fa3638d2b78 100644
--- a/chrome/browser/resources/login/user_pod_row.js
+++ b/chrome/browser/resources/login/user_pod_row.js
@@ -187,9 +187,6 @@ cr.define('login', function() {
'click',
this.handleRemoveUserConfirmationClick_.bind(this));
}
-
- this.customButtonElement.addEventListener('click',
Tim Song 2014/05/16 18:38:47 It's also worth changing the HTML and CSS, so this
xiyuan 2014/05/16 23:00:56 CustomButton -> CustomIcon <button> -> <div> <img>
- this.handleCustomButtonClick_.bind(this));
},
/**
@@ -881,13 +878,6 @@ cr.define('login', function() {
this.parentNode.setActivatedPod(this);
break;
}
- },
-
- /**
- * Called when the custom button is clicked.
- */
- handleCustomButtonClick_: function() {
- chrome.send('customButtonClicked', [this.user.username]);
}
};

Powered by Google App Engine
This is Rietveld 408576698