| Index: ash/wm/lock_state_controller.cc
 | 
| diff --git a/ash/wm/lock_state_controller.cc b/ash/wm/lock_state_controller.cc
 | 
| index 4448812035172224b63ce052896fc2ff52a2566c..9a9d52030a9b6adb2c5f4d48bab5367f7dd0cd60 100644
 | 
| --- a/ash/wm/lock_state_controller.cc
 | 
| +++ b/ash/wm/lock_state_controller.cc
 | 
| @@ -493,9 +493,9 @@ void LockStateController::PreLockAnimationFinished(bool request_lock) {
 | 
|    // Increase lock timeout for slower hardware, see http://crbug.com/350628
 | 
|    const std::string board = base::SysInfo::GetLsbReleaseBoard();
 | 
|    if (board == "x86-mario" ||
 | 
| -      StartsWithASCII(board, "x86-alex", true /* case_sensitive */) ||
 | 
| -      StartsWithASCII(board, "x86-zgb", true /* case_sensitive */) ||
 | 
| -      StartsWithASCII(board, "daisy", true /* case_sensitive */)) {
 | 
| +      base::StartsWithASCII(board, "x86-alex", true /* case_sensitive */) ||
 | 
| +      base::StartsWithASCII(board, "x86-zgb", true /* case_sensitive */) ||
 | 
| +      base::StartsWithASCII(board, "daisy", true /* case_sensitive */)) {
 | 
|      timeout *= 2;
 | 
|    }
 | 
|  // Times out on ASAN bots.
 | 
| 
 |