| 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
|
| deleted file mode 100644
|
| index 71b7a207ee16fc3ffada20ea9255201dce823f92..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/resources/login/screen_account_picker.js
|
| +++ /dev/null
|
| @@ -1,312 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -/**
|
| - * @fileoverview Account picker screen implementation.
|
| - */
|
| -
|
| -login.createScreen('AccountPickerScreen', 'account-picker', function() {
|
| - /**
|
| - * Maximum number of offline login failures before online login.
|
| - * @type {number}
|
| - * @const
|
| - */
|
| - var MAX_LOGIN_ATTEMPTS_IN_POD = 3;
|
| - /**
|
| - * Whether to preselect the first pod automatically on login screen.
|
| - * @type {boolean}
|
| - * @const
|
| - */
|
| - var PRESELECT_FIRST_POD = true;
|
| -
|
| - return {
|
| - EXTERNAL_API: [
|
| - 'loadUsers',
|
| - 'runAppForTesting',
|
| - 'setApps',
|
| - 'setShouldShowApps',
|
| - 'showAppError',
|
| - 'updateUserImage',
|
| - 'setCapsLockState',
|
| - 'forceLockedUserPodFocus',
|
| - 'removeUser',
|
| - 'showBannerMessage',
|
| - 'showUserPodCustomIcon',
|
| - 'hideUserPodCustomIcon',
|
| - 'setAuthType',
|
| - 'showEasyUnlockBubble',
|
| - ],
|
| -
|
| - preferredWidth_: 0,
|
| - preferredHeight_: 0,
|
| -
|
| - // Whether this screen is shown for the first time.
|
| - firstShown_: true,
|
| -
|
| - /** @override */
|
| - decorate: function() {
|
| - login.PodRow.decorate($('pod-row'));
|
| - },
|
| -
|
| - /** @override */
|
| - getPreferredSize: function() {
|
| - return {width: this.preferredWidth_, height: this.preferredHeight_};
|
| - },
|
| -
|
| - /** @override */
|
| - onWindowResize: function() {
|
| - $('pod-row').onWindowResize();
|
| - },
|
| -
|
| - /**
|
| - * Sets preferred size for account picker screen.
|
| - */
|
| - setPreferredSize: function(width, height) {
|
| - this.preferredWidth_ = width;
|
| - this.preferredHeight_ = height;
|
| - },
|
| -
|
| - /**
|
| - * When the account picker is being used to lock the screen, pressing the
|
| - * exit accelerator key will sign out the active user as it would when
|
| - * they are signed in.
|
| - */
|
| - exit: function() {
|
| - // Check and disable the sign out button so that we can never have two
|
| - // sign out requests generated in a row.
|
| - if ($('pod-row').lockedPod && !$('sign-out-user-button').disabled) {
|
| - $('sign-out-user-button').disabled = true;
|
| - chrome.send('signOutUser');
|
| - }
|
| - },
|
| -
|
| - /* Cancel user adding if ESC was pressed.
|
| - */
|
| - cancel: function() {
|
| - if (Oobe.getInstance().displayType == DISPLAY_TYPE.USER_ADDING)
|
| - chrome.send('cancelUserAdding');
|
| - },
|
| -
|
| - /**
|
| - * Event handler that is invoked just after the frame is shown.
|
| - * @param {string} data Screen init payload.
|
| - */
|
| - onAfterShow: function(data) {
|
| - $('pod-row').handleAfterShow();
|
| - },
|
| -
|
| - /**
|
| - * Event handler that is invoked just before the frame is shown.
|
| - * @param {string} data Screen init payload.
|
| - */
|
| - onBeforeShow: function(data) {
|
| - chrome.send('loginUIStateChanged', ['account-picker', true]);
|
| - $('login-header-bar').signinUIState = SIGNIN_UI_STATE.ACCOUNT_PICKER;
|
| - chrome.send('hideCaptivePortal');
|
| - var podRow = $('pod-row');
|
| - podRow.handleBeforeShow();
|
| -
|
| - // In case of the preselected pod onShow will be called once pod
|
| - // receives focus.
|
| - if (!podRow.preselectedPod)
|
| - this.onShow();
|
| - },
|
| -
|
| - /**
|
| - * Event handler invoked when the page is shown and ready.
|
| - */
|
| - onShow: function() {
|
| - if (!this.firstShown_) return;
|
| - this.firstShown_ = false;
|
| -
|
| - // Ensure that login is actually visible.
|
| - window.webkitRequestAnimationFrame(function() {
|
| - chrome.send('accountPickerReady');
|
| - chrome.send('loginVisible', ['account-picker']);
|
| - });
|
| - },
|
| -
|
| - /**
|
| - * Event handler that is invoked just before the frame is hidden.
|
| - */
|
| - onBeforeHide: function() {
|
| - chrome.send('loginUIStateChanged', ['account-picker', false]);
|
| - $('login-header-bar').signinUIState = SIGNIN_UI_STATE.HIDDEN;
|
| - $('pod-row').handleHide();
|
| - },
|
| -
|
| - /**
|
| - * Shows sign-in error bubble.
|
| - * @param {number} loginAttempts Number of login attemps tried.
|
| - * @param {HTMLElement} content Content to show in bubble.
|
| - */
|
| - showErrorBubble: function(loginAttempts, error) {
|
| - var activatedPod = $('pod-row').activatedPod;
|
| - if (!activatedPod) {
|
| - $('bubble').showContentForElement($('pod-row'),
|
| - cr.ui.Bubble.Attachment.RIGHT,
|
| - error);
|
| - return;
|
| - }
|
| - // Show web authentication if this is not a locally managed user.
|
| - if (loginAttempts > MAX_LOGIN_ATTEMPTS_IN_POD &&
|
| - !activatedPod.user.locallyManagedUser) {
|
| - activatedPod.showSigninUI();
|
| - } else {
|
| - // We want bubble's arrow to point to the first letter of input.
|
| - /** @const */ var BUBBLE_OFFSET = 7;
|
| - /** @const */ var BUBBLE_PADDING = 4;
|
| - $('bubble').showContentForElement(activatedPod.mainInput,
|
| - cr.ui.Bubble.Attachment.BOTTOM,
|
| - error,
|
| - BUBBLE_OFFSET, BUBBLE_PADDING);
|
| - }
|
| - },
|
| -
|
| - /**
|
| - * Loads given users in pod row.
|
| - * @param {array} users Array of user.
|
| - * @param {boolean} showGuest Whether to show guest session button.
|
| - */
|
| - loadUsers: function(users, showGuest) {
|
| - $('pod-row').loadPods(users);
|
| - $('login-header-bar').showGuestButton = showGuest;
|
| -
|
| - // The desktop User Manager can send the index of a pod that should be
|
| - // initially focused.
|
| - var hash = window.location.hash;
|
| - if (hash) {
|
| - var podIndex = hash.substr(1);
|
| - if (podIndex)
|
| - $('pod-row').focusPodByIndex(podIndex, false);
|
| - }
|
| - },
|
| -
|
| - /**
|
| - * Runs app with a given id from the list of loaded apps.
|
| - * @param {!string} app_id of an app to run.
|
| - * @param {boolean=} opt_diagnostic_mode Whether to run the app in
|
| - * diagnostic mode. Default is false.
|
| - */
|
| - runAppForTesting: function(app_id, opt_diagnostic_mode) {
|
| - $('pod-row').findAndRunAppForTesting(app_id, opt_diagnostic_mode);
|
| - },
|
| -
|
| - /**
|
| - * Adds given apps to the pod row.
|
| - * @param {array} apps Array of apps.
|
| - */
|
| - setApps: function(apps) {
|
| - $('pod-row').setApps(apps);
|
| - },
|
| -
|
| - /**
|
| - * Sets the flag of whether app pods should be visible.
|
| - * @param {boolean} shouldShowApps Whether to show app pods.
|
| - */
|
| - setShouldShowApps: function(shouldShowApps) {
|
| - $('pod-row').setShouldShowApps(shouldShowApps);
|
| - },
|
| -
|
| - /**
|
| - * Shows the given kiosk app error message.
|
| - * @param {!string} message Error message to show.
|
| - */
|
| - showAppError: function(message) {
|
| - // TODO(nkostylev): Figure out a way to show kiosk app launch error
|
| - // pointing to the kiosk app pod.
|
| - /** @const */ var BUBBLE_PADDING = 12;
|
| - $('bubble').showTextForElement($('pod-row'),
|
| - message,
|
| - cr.ui.Bubble.Attachment.BOTTOM,
|
| - $('pod-row').offsetWidth / 2,
|
| - BUBBLE_PADDING);
|
| - },
|
| -
|
| - /**
|
| - * Updates current image of a user.
|
| - * @param {string} username User for which to update the image.
|
| - */
|
| - updateUserImage: function(username) {
|
| - $('pod-row').updateUserImage(username);
|
| - },
|
| -
|
| - /**
|
| - * Updates Caps Lock state (for Caps Lock hint in password input field).
|
| - * @param {boolean} enabled Whether Caps Lock is on.
|
| - */
|
| - setCapsLockState: function(enabled) {
|
| - $('pod-row').classList.toggle('capslock-on', enabled);
|
| - },
|
| -
|
| - /**
|
| - * Enforces focus on user pod of locked user.
|
| - */
|
| - forceLockedUserPodFocus: function() {
|
| - var row = $('pod-row');
|
| - if (row.lockedPod)
|
| - row.focusPod(row.lockedPod, true);
|
| - },
|
| -
|
| - /**
|
| - * Remove given user from pod row if it is there.
|
| - * @param {string} user name.
|
| - */
|
| - removeUser: function(username) {
|
| - $('pod-row').removeUserPod(username);
|
| - },
|
| -
|
| - /**
|
| - * Displays a banner containing |message|. If the banner is already present
|
| - * this function updates the message in the banner. This function is used
|
| - * by the chrome.screenlockPrivate.showMessage API.
|
| - * @param {string} message Text to be displayed
|
| - */
|
| - showBannerMessage: function(message) {
|
| - var banner = $('signin-banner');
|
| - banner.textContent = message;
|
| - banner.classList.toggle('message-set', true);
|
| - },
|
| -
|
| - /**
|
| - * Shows a custom icon in the user pod of |username|. This function
|
| - * is used by the chrome.screenlockPrivate API.
|
| - * @param {string} username Username of pod to add button
|
| - * @param {{scale1x: string, scale2x: string}} icon Dictionary of URLs of
|
| - * the custom icon's representations for 1x and 2x scale factors.
|
| - */
|
| - showUserPodCustomIcon: function(username, icon) {
|
| - $('pod-row').showUserPodCustomIcon(username, icon);
|
| - },
|
| -
|
| - /**
|
| - * Hides the custom icon in the user pod of |username| added by
|
| - * showUserPodCustomIcon(). This function is used by the
|
| - * chrome.screenlockPrivate API.
|
| - * @param {string} username Username of pod to remove button
|
| - */
|
| - hideUserPodCustomIcon: function(username) {
|
| - $('pod-row').hideUserPodCustomIcon(username);
|
| - },
|
| -
|
| - /**
|
| - * Sets the authentication type used to authenticate the user.
|
| - * @param {string} username Username of selected user
|
| - * @param {number} authType Authentication type, must be a valid value in
|
| - * the AUTH_TYPE enum in user_pod_row.js.
|
| - * @param {string} value The initial value to use for authentication.
|
| - */
|
| - setAuthType: function(username, authType, value) {
|
| - $('pod-row').setAuthType(username, authType, value);
|
| - },
|
| -
|
| - /**
|
| - * Shows a tooltip bubble explaining Easy Unlock.
|
| - */
|
| - showEasyUnlockBubble: function() {
|
| - $('pod-row').showEasyUnlockBubble();
|
| - }
|
| - };
|
| -});
|
| -
|
|
|