| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 extern const char kInvalidGlob[]; | 268 extern const char kInvalidGlob[]; |
| 269 extern const char kInvalidGlobList[]; | 269 extern const char kInvalidGlobList[]; |
| 270 extern const char kInvalidHomepageURL[]; | 270 extern const char kInvalidHomepageURL[]; |
| 271 extern const char kInvalidIconPath[]; | 271 extern const char kInvalidIconPath[]; |
| 272 extern const char kInvalidIcons[]; | 272 extern const char kInvalidIcons[]; |
| 273 extern const char kInvalidImport[]; | 273 extern const char kInvalidImport[]; |
| 274 extern const char kInvalidImportAndExport[]; | 274 extern const char kInvalidImportAndExport[]; |
| 275 extern const char kInvalidImportId[]; | 275 extern const char kInvalidImportId[]; |
| 276 extern const char kInvalidImportVersion[]; | 276 extern const char kInvalidImportVersion[]; |
| 277 extern const char kInvalidIncognitoBehavior[]; | 277 extern const char kInvalidIncognitoBehavior[]; |
| 278 extern const char kInvalidIncognitoModeForPlatformApp[]; | |
| 279 extern const char kInvalidInputComponents[]; | 278 extern const char kInvalidInputComponents[]; |
| 280 extern const char kInvalidInputComponentDescription[]; | 279 extern const char kInvalidInputComponentDescription[]; |
| 281 extern const char kInvalidInputComponentLayoutName[]; | 280 extern const char kInvalidInputComponentLayoutName[]; |
| 282 extern const char kInvalidInputComponentName[]; | 281 extern const char kInvalidInputComponentName[]; |
| 283 extern const char kInvalidInputComponentShortcutKey[]; | 282 extern const char kInvalidInputComponentShortcutKey[]; |
| 284 extern const char kInvalidInputComponentShortcutKeycode[]; | 283 extern const char kInvalidInputComponentShortcutKeycode[]; |
| 285 extern const char kInvalidInputComponentType[]; | 284 extern const char kInvalidInputComponentType[]; |
| 286 extern const char kInvalidIntent[]; | 285 extern const char kInvalidIntent[]; |
| 287 extern const char kInvalidIntentDisposition[]; | 286 extern const char kInvalidIntentDisposition[]; |
| 288 extern const char kInvalidIntentDispositionInPlatformApp[]; | 287 extern const char kInvalidIntentDispositionInPlatformApp[]; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 extern const char kScriptBadgeRequiresFlag[]; | 405 extern const char kScriptBadgeRequiresFlag[]; |
| 407 extern const char kScriptBadgeIconIgnored[]; | 406 extern const char kScriptBadgeIconIgnored[]; |
| 408 extern const char kScriptBadgeTitleIgnored[]; | 407 extern const char kScriptBadgeTitleIgnored[]; |
| 409 extern const char kWebRequestConflictsWithLazyBackground[]; | 408 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 410 #if defined(OS_CHROMEOS) | 409 #if defined(OS_CHROMEOS) |
| 411 extern const char kIllegalPlugins[]; | 410 extern const char kIllegalPlugins[]; |
| 412 #endif | 411 #endif |
| 413 } // namespace extension_manifest_errors | 412 } // namespace extension_manifest_errors |
| 414 | 413 |
| 415 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 414 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |