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 #include "extensions/common/manifest_constants.h" | 5 #include "extensions/common/manifest_constants.h" |
6 | 6 |
7 namespace extensions { | 7 namespace extensions { |
8 | 8 |
9 namespace manifest_keys { | 9 namespace manifest_keys { |
10 | 10 |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 "Permission '*' is unknown or URL pattern is malformed."; | 706 "Permission '*' is unknown or URL pattern is malformed."; |
707 const char kReservedMessageFound[] = | 707 const char kReservedMessageFound[] = |
708 "Reserved key * found in message catalog."; | 708 "Reserved key * found in message catalog."; |
709 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; | 709 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; |
710 const char kUnrecognizedManifestProperty[] = | 710 const char kUnrecognizedManifestProperty[] = |
711 "Unrecognized property '*' of manifest key '*'."; | 711 "Unrecognized property '*' of manifest key '*'."; |
712 const char kWebRequestConflictsWithLazyBackground[] = | 712 const char kWebRequestConflictsWithLazyBackground[] = |
713 "The 'webRequest' API cannot be used with event pages."; | 713 "The 'webRequest' API cannot be used with event pages."; |
714 #if defined(OS_CHROMEOS) | 714 #if defined(OS_CHROMEOS) |
715 const char kIllegalPlugins[] = | 715 const char kIllegalPlugins[] = |
716 "Extensions cannot install plugins on Chrome OS"; | 716 "Extensions cannot install plugins on Chrome OS."; |
| 717 const char kInvalidFileSystemProviderMissingCapabilities[] = |
| 718 "The 'fileSystemProvider' permission requires the " |
| 719 "'file_system_provider_capabilities' section to be specified in the " |
| 720 "manifest."; |
| 721 const char kInvalidFileSystemProviderMissingPermission[] = |
| 722 "The 'file_system_provider_capabilities' section requires the " |
| 723 "'fileSystemProvider' permission to be specified in the manifest."; |
717 #endif | 724 #endif |
718 | 725 |
719 } // namespace manifest_errors | 726 } // namespace manifest_errors |
720 | 727 |
721 } // namespace extensions | 728 } // namespace extensions |
OLD | NEW |