| Index: chrome/browser/chromeos/login/user_manager_impl.cc
 | 
| diff --git a/chrome/browser/chromeos/login/user_manager_impl.cc b/chrome/browser/chromeos/login/user_manager_impl.cc
 | 
| index e1e359af6baaeef75b863ba11ca9ed324f9759f2..e2f6858d5857b970bef58908cc6d31744a6b09d5 100644
 | 
| --- a/chrome/browser/chromeos/login/user_manager_impl.cc
 | 
| +++ b/chrome/browser/chromeos/login/user_manager_impl.cc
 | 
| @@ -1502,7 +1502,7 @@ void UserManagerImpl::KioskAppLoggedIn(const std::string& app_id) {
 | 
|    // Disable window animation since kiosk app runs in a single full screen
 | 
|    // window and window animation causes start-up janks.
 | 
|    command_line->AppendSwitch(
 | 
| -      views::corewm::switches::kWindowAnimationsDisabled);
 | 
| +      wm::switches::kWindowAnimationsDisabled);
 | 
|  }
 | 
|  
 | 
|  void UserManagerImpl::DemoAccountLoggedIn() {
 | 
| @@ -1514,7 +1514,7 @@ void UserManagerImpl::DemoAccountLoggedIn() {
 | 
|    // Disable window animation since the demo app runs in a single full screen
 | 
|    // window and window animation causes start-up janks.
 | 
|    CommandLine::ForCurrentProcess()->AppendSwitch(
 | 
| -      views::corewm::switches::kWindowAnimationsDisabled);
 | 
| +      wm::switches::kWindowAnimationsDisabled);
 | 
|  }
 | 
|  
 | 
|  void UserManagerImpl::RetailModeUserLoggedIn() {
 | 
| 
 |