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

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

Issue 8670012: Extension Settings API: move the API functions into an object SettingsNamepace, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 677fb194891816294028017854c163f54418562a..e68deb35f7e1e0b24c03cbf83de44461e47fcd02 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -140,13 +140,21 @@ class ExtensionService
// If auto-updates are turned on, default to running every 5 hours.
static const int kDefaultUpdateFrequencySeconds = 60 * 60 * 5;
- // The name of the directory inside the profile where per-extension settings
+ // The name of the directory inside the profile where per-app local settings
// are stored.
- static const char* kExtensionSettingsDirectoryName;
+ static const char* kLocalAppSettingsDirectoryName;
- // The name of the directory inside the profile where per-app settings
+ // The name of the directory inside the profile where per-extension local
+ // settings are stored.
+ static const char* kLocalExtensionSettingsDirectoryName;
+
+ // The name of the directory inside the profile where per-app synced settings
// are stored.
- static const char* kAppSettingsDirectoryName;
+ static const char* kSyncAppSettingsDirectoryName;
+
+ // The name of the directory inside the profile where per-extension synced
+ // settings are stored.
+ static const char* kSyncExtensionSettingsDirectoryName;
// Determine if a given extension download should be treated as if it came
// from the gallery. Note that this is requires *both* that the download_url
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service.cc » ('j') | chrome/browser/extensions/settings/settings_frontend.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698