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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "extensions/common/manifest_constants.h" | 6 #include "extensions/common/manifest_constants.h" |
7 | 7 |
8 namespace extensions { | 8 namespace extensions { |
9 | 9 |
10 namespace manifest_keys { | 10 namespace manifest_keys { |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 const char kInvalidFileHandlerTypeElement[] = | 399 const char kInvalidFileHandlerTypeElement[] = |
400 "Invalid value for 'file_handlers[*].types[*]'."; | 400 "Invalid value for 'file_handlers[*].types[*]'."; |
401 const char kInvalidGlob[] = | 401 const char kInvalidGlob[] = |
402 "Invalid value for 'content_scripts[*].*[*]'."; | 402 "Invalid value for 'content_scripts[*].*[*]'."; |
403 const char kInvalidGlobList[] = | 403 const char kInvalidGlobList[] = |
404 "Invalid value for 'content_scripts[*].*'."; | 404 "Invalid value for 'content_scripts[*].*'."; |
405 const char kInvalidHomepageOverrideURL[] = | 405 const char kInvalidHomepageOverrideURL[] = |
406 "Invalid value for overriding homepage url: '[*]'."; | 406 "Invalid value for overriding homepage url: '[*]'."; |
407 const char kInvalidHomepageURL[] = | 407 const char kInvalidHomepageURL[] = |
408 "Invalid value for homepage url: '[*]'."; | 408 "Invalid value for homepage url: '[*]'."; |
| 409 const char kInvalidIconKey[] = "Invalid key in icons: \"*\"."; |
409 const char kInvalidIconPath[] = | 410 const char kInvalidIconPath[] = |
410 "Invalid value for 'icons[\"*\"]'."; | 411 "Invalid value for 'icons[\"*\"]'."; |
411 const char kInvalidIcons[] = | 412 const char kInvalidIcons[] = |
412 "Invalid value for 'icons'."; | 413 "Invalid value for 'icons'."; |
413 const char kInvalidImport[] = | 414 const char kInvalidImport[] = |
414 "Invalid value for 'import'."; | 415 "Invalid value for 'import'."; |
415 const char kInvalidImportAndExport[] = | 416 const char kInvalidImportAndExport[] = |
416 "Simultaneous 'import' and 'export' are not allowed."; | 417 "Simultaneous 'import' and 'export' are not allowed."; |
417 const char kInvalidImportId[] = | 418 const char kInvalidImportId[] = |
418 "Invalid value for 'import[*].id'."; | 419 "Invalid value for 'import[*].id'."; |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 "'file_system_provider_capabilities' section to be specified in the " | 733 "'file_system_provider_capabilities' section to be specified in the " |
733 "manifest."; | 734 "manifest."; |
734 const char kInvalidFileSystemProviderMissingPermission[] = | 735 const char kInvalidFileSystemProviderMissingPermission[] = |
735 "The 'file_system_provider_capabilities' section requires the " | 736 "The 'file_system_provider_capabilities' section requires the " |
736 "'fileSystemProvider' permission to be specified in the manifest."; | 737 "'fileSystemProvider' permission to be specified in the manifest."; |
737 #endif | 738 #endif |
738 | 739 |
739 } // namespace manifest_errors | 740 } // namespace manifest_errors |
740 | 741 |
741 } // namespace extensions | 742 } // namespace extensions |
OLD | NEW |