#ifndef CHROME_BROWSER_GUESTVIEW_WEBVIEW_CONTEXT_MENU_CONTENT_TYPE_WEBVIEW_H_
#define CHROME_BROWSER_GUESTVIEW_WEBVIEW_CONTEXT_MENU_CONTENT_TYPE_WEBVIEW_H_
#include "chrome/browser/renderer_context_menu/context_menu_content_type.h"
class ContextMenuContentTypeWebView : public ContextMenuContentType {
 public:
  virtual ~ContextMenuContentTypeWebView();
  
  virtual bool SupportsGroup(int group) OVERRIDE;
 protected:
  ContextMenuContentTypeWebView(content::RenderFrameHost* render_frame_host,
                                const content::ContextMenuParams& params);
 private:
  friend class ContextMenuContentTypeFactory;
  DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeWebView);
};
#endif