| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 "Invalid value for 'incognito'."; | 324 "Invalid value for 'incognito'."; |
| 325 const char kInvalidIncognitoModeForPlatformApp[] = | 325 const char kInvalidIncognitoModeForPlatformApp[] = |
| 326 "Invalid value for 'incognito'. Packaged apps must use split incognito " | 326 "Invalid value for 'incognito'. Packaged apps must use split incognito " |
| 327 "mode."; | 327 "mode."; |
| 328 const char kInvalidInputComponents[] = | 328 const char kInvalidInputComponents[] = |
| 329 "Invalid value for 'input_components'"; | 329 "Invalid value for 'input_components'"; |
| 330 const char kInvalidInputComponentDescription[] = | 330 const char kInvalidInputComponentDescription[] = |
| 331 "Invalid value for 'input_components[*].description"; | 331 "Invalid value for 'input_components[*].description"; |
| 332 const char kInvalidInputComponentLayoutName[] = | 332 const char kInvalidInputComponentLayoutName[] = |
| 333 "Invalid value for 'input_components[*].layouts[*]"; | 333 "Invalid value for 'input_components[*].layouts[*]"; |
| 334 const char kInvalidInputComponentLayouts[] = | |
| 335 "Invalid value for 'input_components[*].layouts"; | |
| 336 const char kInvalidInputComponentName[] = | 334 const char kInvalidInputComponentName[] = |
| 337 "Invalid value for 'input_components[*].name"; | 335 "Invalid value for 'input_components[*].name"; |
| 338 const char kInvalidInputComponentShortcutKey[] = | 336 const char kInvalidInputComponentShortcutKey[] = |
| 339 "Invalid value for 'input_components[*].shortcutKey"; | 337 "Invalid value for 'input_components[*].shortcutKey"; |
| 340 const char kInvalidInputComponentShortcutKeycode[] = | 338 const char kInvalidInputComponentShortcutKeycode[] = |
| 341 "Invalid value for 'input_components[*].shortcutKey.keyCode"; | 339 "Invalid value for 'input_components[*].shortcutKey.keyCode"; |
| 342 const char kInvalidInputComponentType[] = | 340 const char kInvalidInputComponentType[] = |
| 343 "Invalid value for 'input_components[*].type"; | 341 "Invalid value for 'input_components[*].type"; |
| 344 const char kInvalidIntent[] = | 342 const char kInvalidIntent[] = |
| 345 "Invalid value for intents[*]"; | 343 "Invalid value for intents[*]"; |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 const char kScriptBadgeTitleIgnored[] = | 604 const char kScriptBadgeTitleIgnored[] = |
| 607 "default_title specified in script_badge manifest section will not be " | 605 "default_title specified in script_badge manifest section will not be " |
| 608 "used."; | 606 "used."; |
| 609 const char kWebRequestConflictsWithLazyBackground[] = | 607 const char kWebRequestConflictsWithLazyBackground[] = |
| 610 "The 'webRequest' API cannot be used with event pages."; | 608 "The 'webRequest' API cannot be used with event pages."; |
| 611 #if defined(OS_CHROMEOS) | 609 #if defined(OS_CHROMEOS) |
| 612 const char kIllegalPlugins[] = | 610 const char kIllegalPlugins[] = |
| 613 "Extensions cannot install plugins on Chrome OS"; | 611 "Extensions cannot install plugins on Chrome OS"; |
| 614 #endif | 612 #endif |
| 615 } // namespace extension_manifest_errors | 613 } // namespace extension_manifest_errors |
| OLD | NEW |