#ifndef CHROME_BROWSER_POLICY_SCHEMA_REGISTRY_SERVICE_BUILDER_H_
#define CHROME_BROWSER_POLICY_SCHEMA_REGISTRY_SERVICE_BUILDER_H_
#include <memory>
namespace content {
class BrowserContext;
}
namespace policy {
class CombinedSchemaRegistry;
class Schema;
class SchemaRegistryService;
class SchemaRegistry;
std::unique_ptr<SchemaRegistryService> BuildSchemaRegistryServiceForProfile(
content::BrowserContext* context,
const Schema& chrome_schema,
CombinedSchemaRegistry* global_registry);
std::unique_ptr<SchemaRegistryService> BuildSchemaRegistryService(
std::unique_ptr<SchemaRegistry> registry,
const Schema& chrome_schema,
CombinedSchemaRegistry* global_registry);
}
#endif