Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / views / download / download_shelf_context_menu_view.cc
blob26cf968e6014c79a72ba8b00297e008bc8356ce3
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/views/download/download_shelf_context_menu_view.h"
7 #include "base/i18n/rtl.h"
8 #include "base/logging.h"
9 #include "chrome/browser/download/download_item_model.h"
10 #include "content/public/browser/download_item.h"
11 #include "content/public/browser/page_navigator.h"
12 #include "ui/gfx/geometry/point.h"
13 #include "ui/views/controls/menu/menu_runner.h"
15 DownloadShelfContextMenuView::DownloadShelfContextMenuView(
16 content::DownloadItem* download_item)
17 : DownloadShelfContextMenu(download_item) {
20 DownloadShelfContextMenuView::~DownloadShelfContextMenuView() {}
22 void DownloadShelfContextMenuView::Run(views::Widget* parent_widget,
23 const gfx::Rect& rect,
24 ui::MenuSourceType source_type) {
25 ui::MenuModel* menu_model = GetMenuModel();
26 // Run() should not be getting called if the DownloadItem was destroyed.
27 DCHECK(menu_model);
29 menu_runner_.reset(new views::MenuRunner(
30 menu_model,
31 views::MenuRunner::HAS_MNEMONICS | views::MenuRunner::CONTEXT_MENU));
33 // The menu's alignment is determined based on the UI layout.
34 views::MenuAnchorPosition position;
35 if (base::i18n::IsRTL())
36 position = views::MENU_ANCHOR_TOPRIGHT;
37 else
38 position = views::MENU_ANCHOR_TOPLEFT;
40 // The return value of RunMenuAt indicates whether the MenuRunner was deleted
41 // while running the menu, which indicates that the containing view may have
42 // been deleted. We ignore the return value because our caller already assumes
43 // that the view could be deleted by the time we return from here.
44 if (menu_runner_->RunMenuAt(
45 parent_widget, NULL, rect, position, source_type) ==
46 views::MenuRunner::MENU_DELETED) {
47 return;
49 close_time_ = base::TimeTicks::Now();