blob: 990c03aa2ba00e9d52c870b2991d5eef37477139 [file] [log] [blame]
// 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 "base/macros.h"
#include "content/public/common/context_menu_params.h"
class ContextMenuContentType;
namespace content {
class WebContents;
}
class ContextMenuContentTypeFactory {
public:
static ContextMenuContentType* Create(
content::WebContents* web_contents,
const content::ContextMenuParams& params);
// Sets the chrome specific url checker for internal resources.
// This is exposed for tests.
static ContextMenuContentType* SetInternalResourcesURLChecker(
ContextMenuContentType* content_type);
private:
ContextMenuContentTypeFactory();
virtual ~ContextMenuContentTypeFactory();
static ContextMenuContentType* CreateInternal(
content::WebContents* web_contents,
const content::ContextMenuParams& params);
DISALLOW_COPY_AND_ASSIGN(ContextMenuContentTypeFactory);
};
#endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_FACTORY_H_