| 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 e6d7556d57314360c38ac1fb8988f72d1e2a3315..3e9c498b8014227af1d7c1c96684a2b84553c1f6 100644
 | 
| --- a/ash/system/toast/toast_manager_unittest.cc
 | 
| +++ b/ash/system/toast/toast_manager_unittest.cc
 | 
| @@ -2,6 +2,7 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| +#include "ash/common/shelf/shelf_constants.h"
 | 
|  #include "ash/display/display_manager.h"
 | 
|  #include "ash/screen_util.h"
 | 
|  #include "ash/shelf/shelf.h"
 | 
| @@ -196,7 +197,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,
 | 
| +  EXPECT_EQ(root_bounds.bottom() - kShelfAutoHideSize - 5,
 | 
|              toast_bounds.bottom());
 | 
|  }
 | 
|  
 | 
| 
 |