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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 const char kMissingFile[] = | 441 const char kMissingFile[] = |
442 "At least one js or css file is required for 'content_scripts[*]'."; | 442 "At least one js or css file is required for 'content_scripts[*]'."; |
443 const char kMultipleOverrides[] = | 443 const char kMultipleOverrides[] = |
444 "An extension cannot override more than one page."; | 444 "An extension cannot override more than one page."; |
445 const char kNoWildCardsInPaths[] = | 445 const char kNoWildCardsInPaths[] = |
446 "Wildcards are not allowed in extent URL pattern paths."; | 446 "Wildcards are not allowed in extent URL pattern paths."; |
447 const char kOneUISurfaceOnly[] = | 447 const char kOneUISurfaceOnly[] = |
448 "Only one of 'browser_action', 'page_action', and 'app' can be specified."; | 448 "Only one of 'browser_action', 'page_action', and 'app' can be specified."; |
449 const char kPermissionNotAllowed[] = | 449 const char kPermissionNotAllowed[] = |
450 "Access to permission '*' denied."; | 450 "Access to permission '*' denied."; |
| 451 const char kPlatformAppFlagRequired[] = |
| 452 "Loading platform_app extension type is turned off by default. " |
| 453 "You can enable this type with the --enable-platform-apps " |
| 454 "command-line flag."; |
451 const char kReservedMessageFound[] = | 455 const char kReservedMessageFound[] = |
452 "Reserved key * found in message catalog."; | 456 "Reserved key * found in message catalog."; |
453 #if defined(OS_CHROMEOS) | 457 #if defined(OS_CHROMEOS) |
454 const char kIllegalPlugins[] = | 458 const char kIllegalPlugins[] = |
455 "Extensions cannot install plugins on Chrome OS"; | 459 "Extensions cannot install plugins on Chrome OS"; |
456 #endif | 460 #endif |
457 } // namespace extension_manifest_errors | 461 } // namespace extension_manifest_errors |
458 | |
OLD | NEW |