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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 "Reserved key * found in message catalog."; | 710 "Reserved key * found in message catalog."; |
711 const char kScriptBadgeRequiresFlag[] = | 711 const char kScriptBadgeRequiresFlag[] = |
712 "The script_badge manifest key is turned off by default. " | 712 "The script_badge manifest key is turned off by default. " |
713 "You can enable it with the --enable-script-badges command-line flag."; | 713 "You can enable it with the --enable-script-badges command-line flag."; |
714 const char kScriptBadgeIconIgnored[] = | 714 const char kScriptBadgeIconIgnored[] = |
715 "default_icon specified in script_badge manifest section will not be used."; | 715 "default_icon specified in script_badge manifest section will not be used."; |
716 const char kScriptBadgeTitleIgnored[] = | 716 const char kScriptBadgeTitleIgnored[] = |
717 "default_title specified in script_badge manifest section will not be " | 717 "default_title specified in script_badge manifest section will not be " |
718 "used."; | 718 "used."; |
719 const char kServiceWorkerRequiresFlag[] = | 719 const char kServiceWorkerRequiresFlag[] = |
720 "Service worker features require --enable-service-worker command-line " | 720 "Service worker features require " |
721 "flag."; | 721 "--enable-experimental-web-platform-features command-line flag."; |
722 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; | 722 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; |
723 const char kUnrecognizedManifestProperty[] = | 723 const char kUnrecognizedManifestProperty[] = |
724 "Unrecognized property '*' of manifest key '*'."; | 724 "Unrecognized property '*' of manifest key '*'."; |
725 const char kWebRequestConflictsWithLazyBackground[] = | 725 const char kWebRequestConflictsWithLazyBackground[] = |
726 "The 'webRequest' API cannot be used with event pages."; | 726 "The 'webRequest' API cannot be used with event pages."; |
727 #if defined(OS_CHROMEOS) | 727 #if defined(OS_CHROMEOS) |
728 const char kIllegalPlugins[] = | 728 const char kIllegalPlugins[] = |
729 "Extensions cannot install plugins on Chrome OS"; | 729 "Extensions cannot install plugins on Chrome OS"; |
730 #endif | 730 #endif |
731 | 731 |
732 } // namespace manifest_errors | 732 } // namespace manifest_errors |
733 | 733 |
734 } // namespace extensions | 734 } // namespace extensions |
OLD | NEW |