diff options
author | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-15 09:21:12 +0000 |
---|---|---|
committer | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-15 09:21:12 +0000 |
commit | 2d30d04ecb2e82011ce317f855967cf7f4cc5213 (patch) | |
tree | 9c1a640683e27200139fe15f04a90dd0f52fc919 /extensions/common | |
parent | 08d7b2796ca0ee39154410a76fb298e1bda23fea (diff) | |
download | chromium_src-2d30d04ecb2e82011ce317f855967cf7f4cc5213.zip chromium_src-2d30d04ecb2e82011ce317f855967cf7f4cc5213.tar.gz chromium_src-2d30d04ecb2e82011ce317f855967cf7f4cc5213.tar.bz2 |
Make ExtensionPrefs a ProfileKeyedService.
BUG=178218
TBR=asargent@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14999009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200220 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common')
-rw-r--r-- | extensions/common/constants.cc | 2 | ||||
-rw-r--r-- | extensions/common/constants.h | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/extensions/common/constants.cc b/extensions/common/constants.cc index d931137..f84386a 100644 --- a/extensions/common/constants.cc +++ b/extensions/common/constants.cc @@ -17,4 +17,6 @@ const base::FilePath::CharType kMessagesFilename[] = const base::FilePath::CharType kPlatformSpecificFolder[] = FILE_PATH_LITERAL("_platform_specific"); +const char kInstallDirectoryName[] = "Extensions"; + } // namespace extensions diff --git a/extensions/common/constants.h b/extensions/common/constants.h index 31a4985..aeb9e67 100644 --- a/extensions/common/constants.h +++ b/extensions/common/constants.h @@ -24,6 +24,10 @@ extern const base::FilePath::CharType kMessagesFilename[]; // The base directory for subdirectories with platform-specific code. extern const base::FilePath::CharType kPlatformSpecificFolder[]; +// The name of the directory inside the profile where extensions are +// installed to. +extern const char kInstallDirectoryName[]; + } // namespace extensions #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |