| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ |
| 6 #define EXTENSIONS_COMMON_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 | 9 |
| 10 namespace extensions { | 10 namespace extensions { |
| 11 | 11 |
| 12 // Scheme we serve extension content from. | 12 // Scheme we serve extension content from. |
| 13 extern const char kExtensionScheme[]; | 13 extern const char kExtensionScheme[]; |
| 14 | 14 |
| 15 // The name of the manifest inside an extension. | 15 // The name of the manifest inside an extension. |
| 16 extern const base::FilePath::CharType kManifestFilename[]; | 16 extern const base::FilePath::CharType kManifestFilename[]; |
| 17 | 17 |
| 18 // The name of locale folder inside an extension. | 18 // The name of locale folder inside an extension. |
| 19 extern const base::FilePath::CharType kLocaleFolder[]; | 19 extern const base::FilePath::CharType kLocaleFolder[]; |
| 20 | 20 |
| 21 // The name of the messages file inside an extension. | 21 // The name of the messages file inside an extension. |
| 22 extern const base::FilePath::CharType kMessagesFilename[]; | 22 extern const base::FilePath::CharType kMessagesFilename[]; |
| 23 | 23 |
| 24 // The base directory for subdirectories with platform-specific code. | 24 // The base directory for subdirectories with platform-specific code. |
| 25 extern const base::FilePath::CharType kPlatformSpecificFolder[]; | 25 extern const base::FilePath::CharType kPlatformSpecificFolder[]; |
| 26 | 26 |
| 27 // The name of the directory inside the profile where extensions are | 27 // The name of the directory inside the profile where extensions are |
| 28 // installed to. | 28 // installed to. |
| 29 extern const char kInstallDirectoryName[]; | 29 extern const char kInstallDirectoryName[]; |
| 30 | 30 |
| 31 // The name of a temporary directory to install an extension into for | 31 // The name of a temporary directory to install an extension into for |
| (...skipping 16 matching lines...) Expand all Loading... |
| 48 | 48 |
| 49 // The file extension (.crx) for extensions. | 49 // The file extension (.crx) for extensions. |
| 50 extern const base::FilePath::CharType kExtensionFileExtension[]; | 50 extern const base::FilePath::CharType kExtensionFileExtension[]; |
| 51 | 51 |
| 52 // The file extension (.pem) for private key files. | 52 // The file extension (.pem) for private key files. |
| 53 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; | 53 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; |
| 54 | 54 |
| 55 } // namespace extensions | 55 } // namespace extensions |
| 56 | 56 |
| 57 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 57 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
| OLD | NEW |