Chromium Code Reviews| Index: chrome/browser/resources/gaia_auth_host/authenticator.js |
| diff --git a/chrome/browser/resources/gaia_auth_host/authenticator.js b/chrome/browser/resources/gaia_auth_host/authenticator.js |
| index c5a1da21c949682e3785a6a25cde77f4c79d2104..ccee2cec1158b94da9a671ad34f66e4252e3b62e 100644 |
| --- a/chrome/browser/resources/gaia_auth_host/authenticator.js |
| +++ b/chrome/browser/resources/gaia_auth_host/authenticator.js |
| @@ -322,7 +322,8 @@ cr.define('cr.login', function() { |
| * @private |
| */ |
| Authenticator.prototype.onFocus_ = function(e) { |
| - this.webview_.focus(); |
| + if (!this.isNewGaiaFlowChromeOS) |
|
xiyuan
2015/06/10 17:43:03
It is probably more correct to check (authMode ==
Greg Levin
2015/06/10 20:01:25
Done.
|
| + this.webview_.focus(); |
| }; |
| /** |