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

Unified Diff: trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js

Issue 15924006: Revert 191640 "[cros] Temporaly add logging to login screen for ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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
« 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: trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js
===================================================================
--- trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js (revision 202380)
+++ trunk/src/chrome/browser/resources/chromeos/login/user_pod_row.js (working copy)
@@ -471,8 +471,6 @@
handleActionAreaButtonClick_: function(e) {
if (this.parentNode.disabled)
return;
- console.error('Action area clicked: ' + !this.isActionBoxMenuActive +
- ' at ' + e.x + ', ' + e.y);
this.isActionBoxMenuActive = !this.isActionBoxMenuActive;
},
@@ -486,11 +484,8 @@
switch (e.keyIdentifier) {
case 'Enter':
case 'U+0020': // Space
- if (this.parentNode.focusedPod_ && !this.isActionBoxMenuActive) {
- console.error('Action area keyed: ' + !this.isActionBoxMenuActive +
- ' at ' + e.x + ', ' + e.y);
+ if (this.parentNode.focusedPod_ && !this.isActionBoxMenuActive)
this.isActionBoxMenuActive = true;
- }
e.stopPropagation();
break;
case 'Up':
@@ -1207,9 +1202,6 @@
if (this.disabled)
return;
- console.error('Document clicked at ' + e.x + ', ' + e.y +
- ', pod: ' + findAncestorByClass(e.target, 'pod'));
-
// Clear all menus if the click is outside pod menu and its
// button area.
if (!findAncestorByClass(e.target, 'action-box-menu') &&
« 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