| 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_FACTORY_H
_ | 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H
_ |
| 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H
_ | 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H
_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "content/public/common/context_menu_params.h" | 9 #include "content/public/common/context_menu_params.h" |
| 9 | 10 |
| 10 class ContextMenuContentType; | 11 class ContextMenuContentType; |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 class WebContents; | 14 class WebContents; |
| 14 } | 15 } |
| 15 | 16 |
| 16 class ContextMenuContentTypeFactory { | 17 class ContextMenuContentTypeFactory { |
| 17 public: | 18 public: |
| (...skipping 11 matching lines...) Expand all Loading... |
| 29 virtual ~ContextMenuContentTypeFactory(); | 30 virtual ~ContextMenuContentTypeFactory(); |
| 30 | 31 |
| 31 static ContextMenuContentType* CreateInternal( | 32 static ContextMenuContentType* CreateInternal( |
| 32 content::WebContents* web_contents, | 33 content::WebContents* web_contents, |
| 33 const content::ContextMenuParams& params); | 34 const content::ContextMenuParams& params); |
| 34 | 35 |
| 35 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeFactory); | 36 DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeFactory); |
| 36 }; | 37 }; |
| 37 | 38 |
| 38 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTOR
Y_H_ | 39 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTOR
Y_H_ |
| OLD | NEW |