| Index: chrome/browser/resources/login/screen_account_picker.js
|
| diff --git a/chrome/browser/resources/login/screen_account_picker.js b/chrome/browser/resources/login/screen_account_picker.js
|
| index 71b7a207ee16fc3ffada20ea9255201dce823f92..3d14d363ccefe5c64b1e5238adc9a21fce7c8b77 100644
|
| --- a/chrome/browser/resources/login/screen_account_picker.js
|
| +++ b/chrome/browser/resources/login/screen_account_picker.js
|
| @@ -36,6 +36,7 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
|
| 'hideUserPodCustomIcon',
|
| 'setAuthType',
|
| 'showEasyUnlockBubble',
|
| + 'setPublicSessionKeyboardLayouts',
|
| ],
|
|
|
| preferredWidth_: 0,
|
| @@ -306,6 +307,15 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
|
| */
|
| showEasyUnlockBubble: function() {
|
| $('pod-row').showEasyUnlockBubble();
|
| + },
|
| +
|
| + /**
|
| + * Updates the list of available keyboard layouts for a public session pod.
|
| + * @param {string} userID The user ID of the public session
|
| + * @param {!Object} list List of available keyboard layouts
|
| + */
|
| + setPublicSessionKeyboardLayouts: function(userID, list) {
|
| + $('pod-row').setPublicSessionKeyboardLayouts(userID, list);
|
| }
|
| };
|
| });
|
|
|