| Index: chrome/browser/resources/chromeos/login/header_bar.js
|
| diff --git a/chrome/browser/resources/chromeos/login/header_bar.js b/chrome/browser/resources/chromeos/login/header_bar.js
|
| index 019e7780aa5665cbea0741cfaeb051cbe7649964..c83adb6f524b085f0ab96fdf95fdfdd4206f51c4 100644
|
| --- a/chrome/browser/resources/chromeos/login/header_bar.js
|
| +++ b/chrome/browser/resources/chromeos/login/header_bar.js
|
| @@ -48,7 +48,7 @@ cr.define('login', function() {
|
| if (Oobe.getInstance().displayType == DISPLAY_TYPE.LOGIN ||
|
| Oobe.getInstance().displayType == DISPLAY_TYPE.OOBE) {
|
| if (Oobe.getInstance().newKioskUI)
|
| - chrome.send('initializeKioskApps');
|
| + chrome.send('initializeKioskApps');
|
| else
|
| login.AppsMenuButton.decorate($('show-apps-button'));
|
| }
|
| @@ -164,11 +164,14 @@ cr.define('login', function() {
|
| },
|
|
|
| /**
|
| - * Update current header bar UI.
|
| + * Current header bar UI / sign in state.
|
| *
|
| * @type {number} state Current state of the sign-in screen (see
|
| * SIGNIN_UI_STATE).
|
| */
|
| + get signinUIState() {
|
| + return this.signinUIState_;
|
| + },
|
| set signinUIState(state) {
|
| this.signinUIState_ = state;
|
| this.updateUI_();
|
|
|