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

Unified Diff: chrome/browser/profiles/profile_impl.h

Issue 7189029: Implement an initial extension settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add missing files Created 9 years, 6 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/profiles/profile_impl.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index 84dceec863cc7a3cf7c76761ebf29415ec96b47a..b1f331bb20ec2f9f0c2d3ed65bdfc5e096f69a86 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -21,6 +21,7 @@
class ExtensionPrefs;
class ExtensionPrefValueMap;
+class ExtensionSettings;
class PrefService;
#if defined(OS_CHROMEOS)
@@ -193,6 +194,7 @@ class ProfileImpl : public Profile,
// Keep extension_prefs_ on top of extension_service_ because the latter
// maintains a pointer to the first and shall be destructed first.
scoped_ptr<ExtensionPrefs> extension_prefs_;
+ scoped_ptr<ExtensionSettings> extension_settings_;
scoped_ptr<ExtensionService> extension_service_;
scoped_refptr<UserScriptMaster> user_script_master_;
scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;

Powered by Google App Engine
This is Rietveld 408576698