| Index: chrome/browser/resources/chromeos/login/screen_account_picker.js
|
| diff --git a/chrome/browser/resources/chromeos/login/screen_account_picker.js b/chrome/browser/resources/chromeos/login/screen_account_picker.js
|
| index a231b29e338f94c54ecf7fd78f4440e1bb92eab7..30e1923640de1f0367a273554dc34f62d91862a5 100644
|
| --- a/chrome/browser/resources/chromeos/login/screen_account_picker.js
|
| +++ b/chrome/browser/resources/chromeos/login/screen_account_picker.js
|
| @@ -49,10 +49,11 @@ cr.define('login', function() {
|
| /**
|
| * Loads givens users in pod row.
|
| * @param {array} users Array of user.
|
| + * @param {boolean} animated Whether to use init animation.
|
| * @public
|
| */
|
| - AccountPickerScreen.loadUsers = function(users) {
|
| - $('pod-row').loadPods(users);
|
| + AccountPickerScreen.loadUsers = function(users, animated) {
|
| + $('pod-row').loadPods(users, animated);
|
| };
|
|
|
| return {
|
|
|