OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "chrome/browser/download/download_shelf_context_menu.h" | 11 #include "chrome/browser/download/download_shelf_context_menu.h" |
| 12 #include "ui/base/ui_base_types.h" |
12 | 13 |
13 namespace content { | 14 namespace content { |
14 class DownloadItem; | 15 class DownloadItem; |
15 class PageNavigator; | 16 class PageNavigator; |
16 } | 17 } |
17 | 18 |
18 namespace gfx { | 19 namespace gfx { |
19 class Rect; | 20 class Rect; |
20 } | 21 } |
21 | 22 |
22 namespace views { | 23 namespace views { |
23 class MenuRunner; | 24 class MenuRunner; |
24 class Widget; | 25 class Widget; |
25 } | 26 } |
26 | 27 |
27 class DownloadShelfContextMenuView : public DownloadShelfContextMenu { | 28 class DownloadShelfContextMenuView : public DownloadShelfContextMenu { |
28 public: | 29 public: |
29 DownloadShelfContextMenuView(content::DownloadItem* download_item, | 30 DownloadShelfContextMenuView(content::DownloadItem* download_item, |
30 content::PageNavigator* navigator); | 31 content::PageNavigator* navigator); |
31 virtual ~DownloadShelfContextMenuView(); | 32 virtual ~DownloadShelfContextMenuView(); |
32 | 33 |
33 // |rect| is the bounding area for positioning the menu in screen coordinates. | 34 // |rect| is the bounding area for positioning the menu in screen coordinates. |
34 // The menu will be positioned above or below but not overlapping |rect|. | 35 // The menu will be positioned above or below but not overlapping |rect|. |
35 void Run(views::Widget* parent_widget, const gfx::Rect& rect); | 36 void Run(views::Widget* parent_widget, |
| 37 const gfx::Rect& rect, |
| 38 ui::MenuSourceType source_type); |
36 | 39 |
37 private: | 40 private: |
38 scoped_ptr<views::MenuRunner> menu_runner_; | 41 scoped_ptr<views::MenuRunner> menu_runner_; |
39 | 42 |
40 DISALLOW_COPY_AND_ASSIGN(DownloadShelfContextMenuView); | 43 DISALLOW_COPY_AND_ASSIGN(DownloadShelfContextMenuView); |
41 }; | 44 }; |
42 | 45 |
43 #endif // CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_ | 46 #endif // CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_ |
OLD | NEW |