#ifndef CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_WIN_H_
#define CHROME_BROWSER_UI_VIEWS_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_WIN_H_
#include "chrome/browser/ui/views/renderer_context_menu/render_view_context_menu_views.h"
namespace content {
class WebContents;
}
class RenderViewContextMenuWin : public RenderViewContextMenuViews {
public:
RenderViewContextMenuWin(content::RenderFrameHost* render_frame_host,
const content::ContextMenuParams& params);
virtual ~RenderViewContextMenuWin();
virtual bool IsCommandIdVisible(int command_id) const OVERRIDE;
virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuWin);
};
#endif