Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/login_common.js |
| diff --git a/chrome/browser/resources/chromeos/login/login_common.js b/chrome/browser/resources/chromeos/login/login_common.js |
| index 3dc3b63e08bbcfbee1c534728c2010b4ae715fa6..34c6e5e912f949729d3ba507aeb5a46996bf4c49 100644 |
| --- a/chrome/browser/resources/chromeos/login/login_common.js |
| +++ b/chrome/browser/resources/chromeos/login/login_common.js |
| @@ -262,7 +262,8 @@ cr.define('cr.ui', function() { |
| Oobe.loginForTesting = function(username, password) { |
| Oobe.disableSigninUI(); |
| chrome.send('skipToLoginForTesting', [username]); |
| - chrome.send('completeLogin', [username, password, false]); |
| + // TODO(rogerta): expose gaiaId to caller? |
|
achuithb
2014/10/21 21:11:00
Is there a bug-id that you could reference here? I
Roger Tawa OOO till Jul 10th
2014/10/21 21:35:25
This was more of a question than a bug. I will re
|
| + chrome.send('completeLogin', ['fake-gaia-id', username, password, false]); |
|
achuithb
2014/10/21 21:11:00
Is this going to work? I hope this won't break tel
Roger Tawa OOO till Jul 10th
2014/10/21 21:35:25
Oops, should be a numeric field. Done.
|
| }; |
| /** |