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

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

Issue 7562010: [ChromeOS] Fix login wrong password handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync, fix broken tests and add 3 new Created 9 years, 5 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 | « chrome/browser/chromeos/login/parallel_authenticator_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/oobe.js
diff --git a/chrome/browser/resources/chromeos/login/oobe.js b/chrome/browser/resources/chromeos/login/oobe.js
index 2c70dca20e6620fcf5dba20a91a5f41cbed6b6e2..533ac9e67d2b95c7bebde22efa25b4ff211730fc 100644
--- a/chrome/browser/resources/chromeos/login/oobe.js
+++ b/chrome/browser/resources/chromeos/login/oobe.js
@@ -450,7 +450,8 @@ cr.define('cr.ui', function() {
*/
Oobe.resetSigninUI = function() {
var currentScreenId = Oobe.getInstance().currentScreen.id;
- $('signin').reset(currentScreenId == SCREEN_SIGNIN);
+ if (localStrings.getString('authType') == 'webui')
+ $('signin').reset(currentScreenId == SCREEN_SIGNIN);
$('pod-row').reset(currentScreenId == SCREEN_ACCOUNT_PICKER);
};
« no previous file with comments | « chrome/browser/chromeos/login/parallel_authenticator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698