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 #include "chrome/common/extensions/extension_manifest_constants.h" | 5 #include "chrome/common/extensions/extension_manifest_constants.h" |
6 | 6 |
7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
8 | 8 |
9 const char kAllFrames[] = "all_frames"; | 9 const char kAllFrames[] = "all_frames"; |
10 const char kAltKey[] = "altKey"; | 10 const char kAltKey[] = "altKey"; |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 const char kMissingFile[] = | 448 const char kMissingFile[] = |
449 "At least one js or css file is required for 'content_scripts[*]'."; | 449 "At least one js or css file is required for 'content_scripts[*]'."; |
450 const char kMultipleOverrides[] = | 450 const char kMultipleOverrides[] = |
451 "An extension cannot override more than one page."; | 451 "An extension cannot override more than one page."; |
452 const char kNoWildCardsInPaths[] = | 452 const char kNoWildCardsInPaths[] = |
453 "Wildcards are not allowed in extent URL pattern paths."; | 453 "Wildcards are not allowed in extent URL pattern paths."; |
454 const char kOneUISurfaceOnly[] = | 454 const char kOneUISurfaceOnly[] = |
455 "Only one of 'browser_action', 'page_action', and 'app' can be specified."; | 455 "Only one of 'browser_action', 'page_action', and 'app' can be specified."; |
456 const char kPermissionNotAllowed[] = | 456 const char kPermissionNotAllowed[] = |
457 "Access to permission '*' denied."; | 457 "Access to permission '*' denied."; |
| 458 const char kPlatformAppFlagRequired[] = |
| 459 "Loading platform_app extension type is turned off by default. " |
| 460 "You can enable this type with the --enable-platform-apps " |
| 461 "command-line flag."; |
458 const char kReservedMessageFound[] = | 462 const char kReservedMessageFound[] = |
459 "Reserved key * found in message catalog."; | 463 "Reserved key * found in message catalog."; |
460 #if defined(OS_CHROMEOS) | 464 #if defined(OS_CHROMEOS) |
461 const char kIllegalPlugins[] = | 465 const char kIllegalPlugins[] = |
462 "Extensions cannot install plugins on Chrome OS"; | 466 "Extensions cannot install plugins on Chrome OS"; |
463 #endif | 467 #endif |
464 } // namespace extension_manifest_errors | 468 } // namespace extension_manifest_errors |
OLD | NEW |