#include <string>
#include "extensions/browser/api/declarative/test_rules_registry.h"
namespace extensions {
TestRulesRegistry::TestRulesRegistry(const std::string& event_name,
int rules_registry_id)
: … { … }
TestRulesRegistry::TestRulesRegistry(content::BrowserContext* browser_context,
const std::string& event_name,
RulesCacheDelegate* cache_delegate,
int rules_registry_id)
: … { … }
std::string TestRulesRegistry::AddRulesImpl(
const ExtensionId& extension_id,
const std::vector<const api::events::Rule*>& rules) { … }
std::string TestRulesRegistry::RemoveRulesImpl(
const ExtensionId& extension_id,
const std::vector<std::string>& rule_identifiers) { … }
std::string TestRulesRegistry::RemoveAllRulesImpl(
const ExtensionId& extension_id) { … }
void TestRulesRegistry::SetResult(const std::string& result) { … }
TestRulesRegistry::~TestRulesRegistry() = default;
}