#ifndef CONTENT_BROWSER_WEBUI_WEB_UI_CONTROLLER_FACTORY_REGISTRY_H_
#define CONTENT_BROWSER_WEBUI_WEB_UI_CONTROLLER_FACTORY_REGISTRY_H_
#include "base/memory/singleton.h"
#include "content/public/browser/web_ui_controller_factory.h"
namespace content {
class CONTENT_EXPORT WebUIControllerFactoryRegistry
: public WebUIControllerFactory {
public:
static WebUIControllerFactoryRegistry* GetInstance();
virtual WebUIController* CreateWebUIControllerForURL(
WebUI* web_ui, const GURL& url) const OVERRIDE;
virtual WebUI::TypeID GetWebUIType(BrowserContext* browser_context,
const GURL& url) const OVERRIDE;
virtual bool UseWebUIForURL(BrowserContext* browser_context,
const GURL& url) const OVERRIDE;
virtual bool UseWebUIBindingsForURL(BrowserContext* browser_context,
const GURL& url) const OVERRIDE;
bool IsURLAcceptableForWebUI(BrowserContext* browser_context,
const GURL& url) const;
private:
friend struct DefaultSingletonTraits<WebUIControllerFactoryRegistry>;
WebUIControllerFactoryRegistry();
virtual ~WebUIControllerFactoryRegistry();
DISALLOW_COPY_AND_ASSIGN(WebUIControllerFactoryRegistry);
};
}
#endif