// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_TEST_RULES_REGISTRY_H__ #define EXTENSIONS_BROWSER_API_DECLARATIVE_TEST_RULES_REGISTRY_H__ #include "content/public/browser/browser_thread.h" #include "extensions/browser/api/declarative/rules_registry.h" #include "extensions/common/extension_id.h" namespace extensions { // This is a trivial test RulesRegistry that can only store and retrieve rules. class TestRulesRegistry : public RulesRegistry { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_TEST_RULES_REGISTRY_H__