Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2948)

Unified Diff: chrome/browser/resources/login/screen_account_picker.js

Issue 369893005: Implement new design for expanded public session pod design (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed ScreenLockerTest. Rebased. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/login/login.html ('k') | chrome/browser/resources/login/user_pod_row.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c16a3813b91b47b6bd2175b5ae2e4cb64a0dc9c1..71b7a207ee16fc3ffada20ea9255201dce823f92 100644
--- a/chrome/browser/resources/login/screen_account_picker.js
+++ b/chrome/browser/resources/login/screen_account_picker.js
@@ -119,9 +119,6 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
onShow: function() {
if (!this.firstShown_) return;
this.firstShown_ = false;
- // TODO(nkostylev): Enable animation back when session start jank
- // is reduced. See http://crosbug.com/11116 http://crosbug.com/18307
- // $('pod-row').startInitAnimation();
// Ensure that login is actually visible.
window.webkitRequestAnimationFrame(function() {
@@ -170,11 +167,10 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
/**
* Loads given users in pod row.
* @param {array} users Array of user.
- * @param {boolean} animated Whether to use init animation.
* @param {boolean} showGuest Whether to show guest session button.
*/
- loadUsers: function(users, animated, showGuest) {
- $('pod-row').loadPods(users, animated);
+ 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
« no previous file with comments | « chrome/browser/resources/chromeos/login/login.html ('k') | chrome/browser/resources/login/user_pod_row.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698