diff options
author | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 08:07:42 +0000 |
---|---|---|
committer | yoz@chromium.org <yoz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 08:07:42 +0000 |
commit | 836e29803eb5904c781a5ed752b615aeb51ff443 (patch) | |
tree | 6935b9eb9c4768ee47cc3338395ced4d06b48236 /extensions | |
parent | 5f09747ae60598b164c8b4c6786619141012e769 (diff) | |
download | chromium_src-836e29803eb5904c781a5ed752b615aeb51ff443.zip chromium_src-836e29803eb5904c781a5ed752b615aeb51ff443.tar.gz chromium_src-836e29803eb5904c781a5ed752b615aeb51ff443.tar.bz2 |
Reland 200220 - Make ExtensionPrefs a ProfileKeyedService.
Since last time: Fixes leaks in TestExtensionSystem.
BUG=178218
TBR=asargent@chromium.org,thestig@chromium.org,rlp@chromium.org
Review URL: https://chromiumcodereview.appspot.com/15111003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions')
-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_ |