Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(916)

Unified Diff: chrome/browser/extensions/extension_service.h

Issue 9315010: RulesRegistry for declarative APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed comiler errors Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_service.h
diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
index 112bd08a083aa3cc0be866837df0745fe9fc4c81..97fc24504b5ebe2552f7ef0a619ffc6424ce53d2 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -74,6 +74,7 @@ class ExtensionInputMethodEventRouter;
namespace extensions {
class ComponentLoader;
+class RulesRegistryService;
class SettingsFrontend;
class SocketController;
}
@@ -576,6 +577,8 @@ class ExtensionService
// Call only from IO thread.
extensions::SocketController* socket_controller();
+ extensions::RulesRegistryService* GetRulesRegistryService();
+
AppShortcutManager* app_shortcut_manager() { return &app_shortcut_manager_; }
private:
@@ -807,6 +810,8 @@ class ExtensionService
input_method_event_router_;
#endif
+ scoped_ptr<extensions::RulesRegistryService> rules_registry_service_;
+
// A collection of external extension providers. Each provider reads
// a source of external extension information. Examples include the
// windows registry and external_extensions.json.
« no previous file with comments | « chrome/browser/extensions/api/declarative/test_rules_registry.cc ('k') | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698