| Index: chrome/browser/renderer_context_menu/context_menu_content_type_factory.h
|
| diff --git a/chrome/browser/renderer_context_menu/context_menu_content_type_factory.h b/chrome/browser/renderer_context_menu/context_menu_content_type_factory.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..225d891f7cf8b5a49d6e56f2293a82a0b844064f
|
| --- /dev/null
|
| +++ b/chrome/browser/renderer_context_menu/context_menu_content_type_factory.h
|
| @@ -0,0 +1,31 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H_
|
| +#define CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H_
|
| +
|
| +#include "content/public/common/context_menu_params.h"
|
| +
|
| +class ContextMenuContentType;
|
| +
|
| +namespace content {
|
| +class RenderFrameHost;
|
| +class WebContents;
|
| +}
|
| +
|
| +class ContextMenuContentTypeFactory {
|
| + public:
|
| + static ContextMenuContentType* Create(
|
| + content::WebContents* web_contents,
|
| + content::RenderFrameHost* render_frame_host,
|
| + const content::ContextMenuParams& params);
|
| +
|
| + private:
|
| + ContextMenuContentTypeFactory();
|
| + virtual ~ContextMenuContentTypeFactory();
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeFactory);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H_
|
|
|