| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 extern const char kInvalidKeyBindingDescription[]; | 239 extern const char kInvalidKeyBindingDescription[]; |
| 240 extern const char kInvalidKeyBindingDictionary[]; | 240 extern const char kInvalidKeyBindingDictionary[]; |
| 241 extern const char kInvalidKeyBindingMissingPlatform[]; | 241 extern const char kInvalidKeyBindingMissingPlatform[]; |
| 242 extern const char kInvalidKeyBindingTooMany[]; | 242 extern const char kInvalidKeyBindingTooMany[]; |
| 243 extern const char kInvalidKeyBindingUnknownPlatform[]; | 243 extern const char kInvalidKeyBindingUnknownPlatform[]; |
| 244 extern const char kInvalidLaunchContainer[]; | 244 extern const char kInvalidLaunchContainer[]; |
| 245 extern const char kInvalidLaunchValue[]; | 245 extern const char kInvalidLaunchValue[]; |
| 246 extern const char kInvalidLaunchValueContainer[]; | 246 extern const char kInvalidLaunchValueContainer[]; |
| 247 extern const char kInvalidManifest[]; | 247 extern const char kInvalidManifest[]; |
| 248 extern const char kInvalidManifestVersion[]; | 248 extern const char kInvalidManifestVersion[]; |
| 249 extern const char kInvalidManifestVersionOld[]; |
| 249 extern const char kInvalidMatch[]; | 250 extern const char kInvalidMatch[]; |
| 250 extern const char kInvalidMatchCount[]; | 251 extern const char kInvalidMatchCount[]; |
| 251 extern const char kInvalidMatches[]; | 252 extern const char kInvalidMatches[]; |
| 252 extern const char kInvalidMinimumChromeVersion[]; | 253 extern const char kInvalidMinimumChromeVersion[]; |
| 253 extern const char kInvalidNaClModules[]; | 254 extern const char kInvalidNaClModules[]; |
| 254 extern const char kInvalidNaClModulesMIMEType[]; | 255 extern const char kInvalidNaClModulesMIMEType[]; |
| 255 extern const char kInvalidNaClModulesPath[]; | 256 extern const char kInvalidNaClModulesPath[]; |
| 256 extern const char kInvalidName[]; | 257 extern const char kInvalidName[]; |
| 257 extern const char kInvalidOAuth2ClientId[]; | 258 extern const char kInvalidOAuth2ClientId[]; |
| 258 extern const char kInvalidOAuth2Scopes[]; | 259 extern const char kInvalidOAuth2Scopes[]; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 extern const char kScriptBadgeRequiresFlag[]; | 327 extern const char kScriptBadgeRequiresFlag[]; |
| 327 extern const char kScriptBadgeIconIgnored[]; | 328 extern const char kScriptBadgeIconIgnored[]; |
| 328 extern const char kScriptBadgeTitleIgnored[]; | 329 extern const char kScriptBadgeTitleIgnored[]; |
| 329 extern const char kWebRequestConflictsWithLazyBackground[]; | 330 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 330 #if defined(OS_CHROMEOS) | 331 #if defined(OS_CHROMEOS) |
| 331 extern const char kIllegalPlugins[]; | 332 extern const char kIllegalPlugins[]; |
| 332 #endif | 333 #endif |
| 333 } // namespace extension_manifest_errors | 334 } // namespace extension_manifest_errors |
| 334 | 335 |
| 335 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 336 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |