| 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 CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_V
IEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_V
IEWS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_V
IEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_V
IEWS_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" | 8 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" |
| 9 #include "ui/base/ui_base_types.h" | 9 #include "ui/base/ui_base_types.h" |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 // Factory function to create an instance. | 23 // Factory function to create an instance. |
| 24 static RenderViewContextMenuViews* Create( | 24 static RenderViewContextMenuViews* Create( |
| 25 content::RenderFrameHost* render_frame_host, | 25 content::RenderFrameHost* render_frame_host, |
| 26 const content::ContextMenuParams& params); | 26 const content::ContextMenuParams& params); |
| 27 | 27 |
| 28 void RunMenuAt(views::Widget* parent, | 28 void RunMenuAt(views::Widget* parent, |
| 29 const gfx::Point& point, | 29 const gfx::Point& point, |
| 30 ui::MenuSourceType type); | 30 ui::MenuSourceType type); |
| 31 | 31 |
| 32 virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE; | 32 virtual void ExecuteCommand(int command_id, int event_flags) override; |
| 33 | 33 |
| 34 protected: | 34 protected: |
| 35 RenderViewContextMenuViews(content::RenderFrameHost* render_frame_host, | 35 RenderViewContextMenuViews(content::RenderFrameHost* render_frame_host, |
| 36 const content::ContextMenuParams& params); | 36 const content::ContextMenuParams& params); |
| 37 | 37 |
| 38 // RenderViewContextMenu implementation. | 38 // RenderViewContextMenu implementation. |
| 39 virtual bool GetAcceleratorForCommandId( | 39 virtual bool GetAcceleratorForCommandId( |
| 40 int command_id, | 40 int command_id, |
| 41 ui::Accelerator* accelerator) OVERRIDE; | 41 ui::Accelerator* accelerator) override; |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 virtual void AppendPlatformEditableItems() OVERRIDE; | 44 virtual void AppendPlatformEditableItems() override; |
| 45 virtual bool IsCommandIdChecked(int command_id) const OVERRIDE; | 45 virtual bool IsCommandIdChecked(int command_id) const override; |
| 46 virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE; | 46 virtual bool IsCommandIdEnabled(int command_id) const override; |
| 47 | 47 |
| 48 // Model for the BiDi input submenu. | 48 // Model for the BiDi input submenu. |
| 49 ui::SimpleMenuModel bidi_submenu_model_; | 49 ui::SimpleMenuModel bidi_submenu_model_; |
| 50 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuViews); | 50 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuViews); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 #endif // CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MEN
U_VIEWS_H_ | 53 #endif // CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MEN
U_VIEWS_H_ |
| OLD | NEW |