| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_ | 5 #ifndef ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_ |
| 6 #define ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_ | 6 #define ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_ |
| 7 | 7 |
| 8 #include "components/renderer_context_menu/render_view_context_menu_base.h" | 8 #include "components/renderer_context_menu/render_view_context_menu_base.h" |
| 9 | 9 |
| 10 namespace views { | 10 namespace views { |
| 11 class Widget; | 11 class Widget; |
| 12 } | 12 } |
| 13 | 13 |
| 14 namespace gfx { | 14 namespace gfx { |
| 15 class Point; | 15 class Point; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace athena { | 18 namespace athena { |
| 19 | 19 |
| 20 class RenderViewContextMenuImpl : public RenderViewContextMenuBase { | 20 class RenderViewContextMenuImpl : public RenderViewContextMenuBase { |
| 21 public: | 21 public: |
| 22 RenderViewContextMenuImpl(content::RenderFrameHost* render_frame_host, | 22 RenderViewContextMenuImpl(content::RenderFrameHost* render_frame_host, |
| 23 const content::ContextMenuParams& params); | 23 const content::ContextMenuParams& params); |
| 24 virtual ~RenderViewContextMenuImpl(); | 24 ~RenderViewContextMenuImpl() override; |
| 25 | 25 |
| 26 void RunMenuAt(views::Widget* parent, | 26 void RunMenuAt(views::Widget* parent, |
| 27 const gfx::Point& point, | 27 const gfx::Point& point, |
| 28 ui::MenuSourceType type); | 28 ui::MenuSourceType type); |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 // RenderViewContextMenuBase: | 31 // RenderViewContextMenuBase: |
| 32 virtual void InitMenu() override; | 32 void InitMenu() override; |
| 33 virtual void RecordShownItem(int id) override; | 33 void RecordShownItem(int id) override; |
| 34 virtual void RecordUsedItem(int id) override; | 34 void RecordUsedItem(int id) override; |
| 35 #if defined(ENABLE_PLUGINS) | 35 #if defined(ENABLE_PLUGINS) |
| 36 virtual void HandleAuthorizeAllPlugins() override; | 36 void HandleAuthorizeAllPlugins() override; |
| 37 #endif | 37 #endif |
| 38 virtual void NotifyMenuShown() override; | 38 void NotifyMenuShown() override; |
| 39 virtual void NotifyURLOpened(const GURL& url, | 39 void NotifyURLOpened(const GURL& url, |
| 40 content::WebContents* new_contents) override; | 40 content::WebContents* new_contents) override; |
| 41 | 41 |
| 42 // ui::SimpleMenuModel: | 42 // ui::SimpleMenuModel: |
| 43 virtual bool GetAcceleratorForCommandId( | 43 bool GetAcceleratorForCommandId(int command_id, |
| 44 int command_id, | 44 ui::Accelerator* accelerator) override; |
| 45 ui::Accelerator* accelerator) override; | 45 bool IsCommandIdChecked(int command_id) const override; |
| 46 virtual bool IsCommandIdChecked(int command_id) const override; | 46 bool IsCommandIdEnabled(int command_id) const override; |
| 47 virtual bool IsCommandIdEnabled(int command_id) const override; | 47 void ExecuteCommand(int command_id, int event_flags) override; |
| 48 virtual void ExecuteCommand(int command_id, int event_flags) override; | |
| 49 | 48 |
| 50 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuImpl); | 49 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuImpl); |
| 51 }; | 50 }; |
| 52 | 51 |
| 53 } // namespace athena | 52 } // namespace athena |
| 54 | 53 |
| 55 #endif // ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_ | 54 #endif // ATHENA_CONTENT_RENDER_VIEW_CONTEXT_MENU_IMPL_H_ |
| OLD | NEW |