| Index: ash/system/toast/toast_manager_unittest.cc
 | 
| diff --git a/ash/system/toast/toast_manager_unittest.cc b/ash/system/toast/toast_manager_unittest.cc
 | 
| index 3f2b097389b97574c60d058d2c4baf6dcb0df4b1..e416cdfefa9d1cf4a6e41e1caad858500fd60894 100644
 | 
| --- a/ash/system/toast/toast_manager_unittest.cc
 | 
| +++ b/ash/system/toast/toast_manager_unittest.cc
 | 
| @@ -5,6 +5,7 @@
 | 
|  #include "ash/display/display_manager.h"
 | 
|  #include "ash/screen_util.h"
 | 
|  #include "ash/shelf/shelf.h"
 | 
| +#include "ash/shelf/shelf_constants.h"
 | 
|  #include "ash/shelf/shelf_layout_manager.h"
 | 
|  #include "ash/shell.h"
 | 
|  #include "ash/system/toast/toast_manager.h"
 | 
| @@ -197,8 +198,7 @@ TEST_F(ToastManagerTest, PositionWithAutoHiddenBottomShelf) {
 | 
|  
 | 
|    EXPECT_TRUE(toast_bounds.Intersects(shelf->user_work_area_bounds()));
 | 
|    EXPECT_NEAR(root_bounds.CenterPoint().x(), toast_bounds.CenterPoint().x(), 1);
 | 
| -  EXPECT_EQ(root_bounds.bottom() - ShelfLayoutManager::kAutoHideSize - 5,
 | 
| -            toast_bounds.bottom());
 | 
| +  EXPECT_EQ(root_bounds.bottom() - kAutoHideSize - 5, toast_bounds.bottom());
 | 
|  }
 | 
|  
 | 
|  TEST_F(ToastManagerTest, PositionWithHiddenBottomShelf) {
 | 
| 
 |