| Index: chrome/browser/ui/app_list/app_context_menu.cc
|
| diff --git a/chrome/browser/ui/app_list/app_context_menu.cc b/chrome/browser/ui/app_list/app_context_menu.cc
|
| index 5c454e26a82bbafe693d3979618c79298868aca8..716c4dbd0b5c30116db021cce7a7cffff05b9b43 100644
|
| --- a/chrome/browser/ui/app_list/app_context_menu.cc
|
| +++ b/chrome/browser/ui/app_list/app_context_menu.cc
|
| @@ -153,7 +153,10 @@ ui::MenuModel* AppContextMenu::GetMenuModel() {
|
| // Assign unique IDs to commands added by the app itself.
|
| int index = USE_LAUNCH_TYPE_COMMAND_END;
|
| extension_menu_items_->AppendExtensionItems(
|
| - extensions::MenuItem::ExtensionKey(app_id_), base::string16(), &index);
|
| + extensions::MenuItem::ExtensionKey(app_id_),
|
| + base::string16(),
|
| + &index,
|
| + false); // is_action_menu
|
|
|
| // If at least 1 item was added, add another separator after the list.
|
| if (index > USE_LAUNCH_TYPE_COMMAND_END)
|
|
|