diff options
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_ |