| 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 CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 extern const char kLocalesNoDefaultLocaleSpecified[]; | 295 extern const char kLocalesNoDefaultLocaleSpecified[]; |
| 296 extern const char kLocalesNoDefaultMessages[]; | 296 extern const char kLocalesNoDefaultMessages[]; |
| 297 extern const char kLocalesNoValidLocaleNamesListed[]; | 297 extern const char kLocalesNoValidLocaleNamesListed[]; |
| 298 extern const char kLocalesTreeMissing[]; | 298 extern const char kLocalesTreeMissing[]; |
| 299 extern const char kManifestParseError[]; | 299 extern const char kManifestParseError[]; |
| 300 extern const char kManifestUnreadable[]; | 300 extern const char kManifestUnreadable[]; |
| 301 extern const char kMissingFile[]; | 301 extern const char kMissingFile[]; |
| 302 extern const char kMultipleOverrides[]; | 302 extern const char kMultipleOverrides[]; |
| 303 extern const char kNoWildCardsInPaths[]; | 303 extern const char kNoWildCardsInPaths[]; |
| 304 extern const char kPermissionNotAllowed[]; | 304 extern const char kPermissionNotAllowed[]; |
| 305 extern const char kPlatformAppFlagRequired[]; |
| 305 extern const char kOneUISurfaceOnly[]; | 306 extern const char kOneUISurfaceOnly[]; |
| 306 extern const char kReservedMessageFound[]; | 307 extern const char kReservedMessageFound[]; |
| 307 extern const char kWebContentMustBeEnabled[]; | 308 extern const char kWebContentMustBeEnabled[]; |
| 308 #if defined(OS_CHROMEOS) | 309 #if defined(OS_CHROMEOS) |
| 309 extern const char kIllegalPlugins[]; | 310 extern const char kIllegalPlugins[]; |
| 310 #endif | 311 #endif |
| 311 } // namespace extension_manifest_errors | 312 } // namespace extension_manifest_errors |
| 312 | 313 |
| 313 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 314 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |