| Index: chrome/browser/ui/views/download/download_shelf_context_menu_view.cc
|
| diff --git a/chrome/browser/ui/views/download/download_shelf_context_menu_view.cc b/chrome/browser/ui/views/download/download_shelf_context_menu_view.cc
|
| index b5bed6e32900b133c0664d6e746d501499a32b37..75ab4dfc0769be3fb54df2b44f279c5ab10e0136 100644
|
| --- a/chrome/browser/ui/views/download/download_shelf_context_menu_view.cc
|
| +++ b/chrome/browser/ui/views/download/download_shelf_context_menu_view.cc
|
| @@ -22,7 +22,8 @@ DownloadShelfContextMenuView::DownloadShelfContextMenuView(
|
| DownloadShelfContextMenuView::~DownloadShelfContextMenuView() {}
|
|
|
| void DownloadShelfContextMenuView::Run(views::Widget* parent_widget,
|
| - const gfx::Rect& rect) {
|
| + const gfx::Rect& rect,
|
| + ui::MenuSourceType source_type) {
|
| ui::MenuModel* menu_model = GetMenuModel();
|
| // Run() should not be getting called if the DownloadItem was destroyed.
|
| DCHECK(menu_model);
|
| @@ -45,5 +46,6 @@ void DownloadShelfContextMenuView::Run(views::Widget* parent_widget,
|
| NULL,
|
| rect,
|
| position,
|
| + source_type,
|
| views::MenuRunner::HAS_MNEMONICS | views::MenuRunner::CONTEXT_MENU));
|
| }
|
|
|