| Index: chrome/browser/ui/apps/chrome_app_delegate.cc
 | 
| diff --git a/chrome/browser/ui/apps/chrome_app_delegate.cc b/chrome/browser/ui/apps/chrome_app_delegate.cc
 | 
| index 46cd38bc3c521e0f936940036db74110a180378f..2897a07677b7ec12453448016273a244b36d6dfe 100644
 | 
| --- a/chrome/browser/ui/apps/chrome_app_delegate.cc
 | 
| +++ b/chrome/browser/ui/apps/chrome_app_delegate.cc
 | 
| @@ -7,6 +7,7 @@
 | 
|  #include <memory>
 | 
|  #include <utility>
 | 
|  
 | 
| +#include "ash/shelf/shelf_constants.h"
 | 
|  #include "base/macros.h"
 | 
|  #include "base/strings/stringprintf.h"
 | 
|  #include "chrome/browser/app_mode/app_mode_utils.h"
 | 
| @@ -282,7 +283,7 @@ bool ChromeAppDelegate::CheckMediaAccessPermission(
 | 
|  
 | 
|  int ChromeAppDelegate::PreferredIconSize() {
 | 
|  #if defined(USE_ASH)
 | 
| -  return ash::kShelfSize;
 | 
| +  return ash::GetShelfLayoutConstant(ash::SHELF_SIZE);
 | 
|  #else
 | 
|    return extension_misc::EXTENSION_ICON_SMALL;
 | 
|  #endif
 | 
| 
 |