OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/login/login_display_host_impl.h" | 5 #include "chrome/browser/chromeos/login/login_display_host_impl.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "ash/desktop_background/desktop_background_controller.h" | 9 #include "ash/desktop_background/desktop_background_controller.h" |
10 #include "ash/desktop_background/user_wallpaper_delegate.h" | 10 #include "ash/desktop_background/user_wallpaper_delegate.h" |
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
971 ash::Shell::GetPrimaryRootWindow(), | 971 ash::Shell::GetPrimaryRootWindow(), |
972 ash::internal::kShellWindowId_LockScreenContainer); | 972 ash::internal::kShellWindowId_LockScreenContainer); |
973 | 973 |
974 login_window_ = new views::Widget; | 974 login_window_ = new views::Widget; |
975 login_window_->Init(params); | 975 login_window_->Init(params); |
976 login_view_ = new WebUILoginView(); | 976 login_view_ = new WebUILoginView(); |
977 login_view_->Init(); | 977 login_view_->Init(); |
978 if (login_view_->webui_visible()) | 978 if (login_view_->webui_visible()) |
979 OnLoginPromptVisible(); | 979 OnLoginPromptVisible(); |
980 | 980 |
981 views::corewm::SetWindowVisibilityAnimationDuration( | 981 views::corewm::SetWindowHideAnimationDuration( |
982 login_window_->GetNativeView(), | 982 login_window_->GetNativeView(), |
983 base::TimeDelta::FromMilliseconds(kLoginFadeoutTransitionDurationMs)); | 983 base::TimeDelta::FromMilliseconds(kLoginFadeoutTransitionDurationMs)); |
984 views::corewm::SetWindowVisibilityAnimationTransition( | 984 views::corewm::SetWindowVisibilityAnimationTransition( |
985 login_window_->GetNativeView(), | 985 login_window_->GetNativeView(), |
986 views::corewm::ANIMATE_HIDE); | 986 views::corewm::ANIMATE_HIDE); |
987 | 987 |
988 login_window_->SetContentsView(login_view_); | 988 login_window_->SetContentsView(login_view_); |
989 | 989 |
990 // If WebUI is initialized in hidden state, show it only if we're no | 990 // If WebUI is initialized in hidden state, show it only if we're no |
991 // longer waiting for wallpaper animation/user images loading. Otherwise, | 991 // longer waiting for wallpaper animation/user images loading. Otherwise, |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 | 1195 |
1196 scoped_ptr<locale_util::SwitchLanguageCallback> callback( | 1196 scoped_ptr<locale_util::SwitchLanguageCallback> callback( |
1197 new locale_util::SwitchLanguageCallback( | 1197 new locale_util::SwitchLanguageCallback( |
1198 base::Bind(&OnLanguageSwitchedCallback, base::Passed(data.Pass())))); | 1198 base::Bind(&OnLanguageSwitchedCallback, base::Passed(data.Pass())))); |
1199 | 1199 |
1200 // Do not load locale keyboards here. | 1200 // Do not load locale keyboards here. |
1201 locale_util::SwitchLanguage(locale, false, callback.Pass()); | 1201 locale_util::SwitchLanguage(locale, false, callback.Pass()); |
1202 } | 1202 } |
1203 | 1203 |
1204 } // namespace chromeos | 1204 } // namespace chromeos |
OLD | NEW |