| Index: chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.cc
 | 
| diff --git a/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.cc b/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.cc
 | 
| index 631e530a956c586a13f9f3e7f2febe717d68d11e..b9136dc369a3f1e5d909d906e47fec25f959b7bb 100644
 | 
| --- a/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.cc
 | 
| +++ b/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.cc
 | 
| @@ -96,9 +96,16 @@ ash::ShelfAction AppWindowLauncherItemController::ItemSelected(
 | 
|  
 | 
|  ash::ShelfAppMenuItemList AppWindowLauncherItemController::GetAppMenuItems(
 | 
|      int event_flags) {
 | 
| +  // Return an empty item list to avoid showing an application menu.
 | 
|    return ash::ShelfAppMenuItemList();
 | 
|  }
 | 
|  
 | 
| +void AppWindowLauncherItemController::ExecuteCommand(uint32_t command_id,
 | 
| +                                                     int32_t event_flags) {
 | 
| +  // This delegate does not support showing an application menu.
 | 
| +  NOTIMPLEMENTED();
 | 
| +}
 | 
| +
 | 
|  void AppWindowLauncherItemController::Close() {
 | 
|    // Note: Closing windows may affect the contents of app_windows_.
 | 
|    WindowList windows_to_close = windows_;
 | 
| 
 |