Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / renderer_context_menu / context_menu_content_type_extension_popup.h
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION_POPUP_H_
6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION_POPUP_H_
7
8 #include "components/renderer_context_menu/context_menu_content_type.h"
9
10 class ContextMenuContentTypeExtensionPopup : public ContextMenuContentType {
11  public:
12   virtual ~ContextMenuContentTypeExtensionPopup();
13
14   // ContextMenuContentType overrides.
15   virtual bool SupportsGroup(int group) OVERRIDE;
16
17  protected:
18   ContextMenuContentTypeExtensionPopup(
19       content::WebContents* web_contents,
20       const content::ContextMenuParams& params);
21
22  private:
23   friend class ContextMenuContentTypeFactory;
24
25   DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeExtensionPopup);
26 };
27
28 #endif  // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION_POPUP_H_