OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
7 | 7 |
8 namespace extensions { | 8 namespace extensions { |
9 | 9 |
10 // Keys used in JSON representation of extensions. | 10 // Keys used in JSON representation of extensions. |
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 extern const char kPermissionMustBeOptional[]; | 472 extern const char kPermissionMustBeOptional[]; |
473 extern const char kPermissionNotAllowed[]; | 473 extern const char kPermissionNotAllowed[]; |
474 extern const char kPermissionNotAllowedInManifest[]; | 474 extern const char kPermissionNotAllowedInManifest[]; |
475 extern const char kPermissionUnknownOrMalformed[]; | 475 extern const char kPermissionUnknownOrMalformed[]; |
476 extern const char kReservedMessageFound[]; | 476 extern const char kReservedMessageFound[]; |
477 extern const char kUnrecognizedManifestKey[]; | 477 extern const char kUnrecognizedManifestKey[]; |
478 extern const char kUnrecognizedManifestProperty[]; | 478 extern const char kUnrecognizedManifestProperty[]; |
479 extern const char kWebRequestConflictsWithLazyBackground[]; | 479 extern const char kWebRequestConflictsWithLazyBackground[]; |
480 #if defined(OS_CHROMEOS) | 480 #if defined(OS_CHROMEOS) |
481 extern const char kIllegalPlugins[]; | 481 extern const char kIllegalPlugins[]; |
| 482 extern const char kInvalidFileSystemProviderMissingCapabilities[]; |
| 483 extern const char kInvalidFileSystemProviderMissingPermission[]; |
482 #endif | 484 #endif |
483 | 485 |
484 } // namespace manifest_errors | 486 } // namespace manifest_errors |
485 | 487 |
486 } // namespace extensions | 488 } // namespace extensions |
487 | 489 |
488 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 490 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |