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

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

Issue 958923003: ChromeOS Gaia: Do not send 'focusready' message when Gaia window is focused (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove debug output Created 5 years, 10 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 | chrome/browser/resources/gaia_auth_host/authenticator.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/screen_gaia_signin.js
diff --git a/chrome/browser/resources/chromeos/login/screen_gaia_signin.js b/chrome/browser/resources/chromeos/login/screen_gaia_signin.js
index e14eed557c140f717fa3c0d30efb71fcd74866c3..38859f2fdc4973bb028c5eb27250d4fcc08dc492 100644
--- a/chrome/browser/resources/chromeos/login/screen_gaia_signin.js
+++ b/chrome/browser/resources/chromeos/login/screen_gaia_signin.js
@@ -274,7 +274,7 @@ login.createScreen('GaiaSigninScreen', 'gaia-signin', function() {
Oobe.getInstance().headerHidden = false;
this.isShown_ = true;
if (this.isWebviewSignin && !this.loading)
- this.gaiaAuthHost_.setFocus();
+ this.gaiaAuthHost_.sendFocusReady();
},
/**
@@ -460,7 +460,7 @@ login.createScreen('GaiaSigninScreen', 'gaia-signin', function() {
onAuthReady_: function() {
this.loading = false;
if (this.isWebviewSignin && this.isShown_)
- this.gaiaAuthHost_.setFocus();
+ this.gaiaAuthHost_.sendFocusReady();
this.clearLoadingTimer_();
// Show deferred error bubble.
« no previous file with comments | « no previous file | chrome/browser/resources/gaia_auth_host/authenticator.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698