| 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_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION
_POPUP_H_ | 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_ | 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENSION
_POPUP_H_ |
| 7 | 7 |
| 8 #include "components/renderer_context_menu/context_menu_content_type.h" | 8 #include "components/renderer_context_menu/context_menu_content_type.h" |
| 9 | 9 |
| 10 class ContextMenuContentTypeExtensionPopup : public ContextMenuContentType { | 10 class ContextMenuContentTypeExtensionPopup : public ContextMenuContentType { |
| 11 public: | 11 public: |
| 12 virtual ~ContextMenuContentTypeExtensionPopup(); | 12 ~ContextMenuContentTypeExtensionPopup() override; |
| 13 | 13 |
| 14 // ContextMenuContentType overrides. | 14 // ContextMenuContentType overrides. |
| 15 virtual bool SupportsGroup(int group) override; | 15 bool SupportsGroup(int group) override; |
| 16 | 16 |
| 17 protected: | 17 protected: |
| 18 ContextMenuContentTypeExtensionPopup( | 18 ContextMenuContentTypeExtensionPopup( |
| 19 content::WebContents* web_contents, | 19 content::WebContents* web_contents, |
| 20 const content::ContextMenuParams& params); | 20 const content::ContextMenuParams& params); |
| 21 | 21 |
| 22 private: | 22 private: |
| 23 friend class ContextMenuContentTypeFactory; | 23 friend class ContextMenuContentTypeFactory; |
| 24 | 24 |
| 25 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeExtensionPopup); | 25 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeExtensionPopup); |
| 26 }; | 26 }; |
| 27 | 27 |
| 28 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENS
ION_POPUP_H_ | 28 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_EXTENS
ION_POPUP_H_ |
| OLD | NEW |