| 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" |
| 9 |
| 8 namespace extensions { | 10 namespace extensions { |
| 9 | 11 |
| 10 // Scheme we serve extension content from. | 12 // Scheme we serve extension content from. |
| 11 extern const char kExtensionScheme[]; | 13 extern const char kExtensionScheme[]; |
| 12 | 14 |
| 15 // The name of the manifest inside an extension. |
| 16 extern const base::FilePath::CharType kManifestFilename[]; |
| 17 |
| 18 // The name of locale folder inside an extension. |
| 19 extern const base::FilePath::CharType kLocaleFolder[]; |
| 20 |
| 21 // The name of the messages file inside an extension. |
| 22 extern const base::FilePath::CharType kMessagesFilename[]; |
| 23 |
| 24 // The base directory for subdirectories with platform-specific code. |
| 25 extern const base::FilePath::CharType kPlatformSpecificFolder[]; |
| 26 |
| 13 } // namespace extensions | 27 } // namespace extensions |
| 14 | 28 |
| 15 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 29 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
| OLD | NEW |