| 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"; |
| 11 const char kApp[] = "app"; | 11 const char kApp[] = "app"; |
| 12 const char kAudio[] = "audio"; |
| 12 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; | 13 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; |
| 13 const char kBackgroundPage[] = "background.page"; | 14 const char kBackgroundPage[] = "background.page"; |
| 14 const char kBackgroundPageLegacy[] = "background_page"; | 15 const char kBackgroundPageLegacy[] = "background_page"; |
| 15 const char kBackgroundPersistent[] = "background.persistent"; | 16 const char kBackgroundPersistent[] = "background.persistent"; |
| 16 const char kBackgroundScripts[] = "background.scripts"; | 17 const char kBackgroundScripts[] = "background.scripts"; |
| 17 const char kBrowserAction[] = "browser_action"; | 18 const char kBrowserAction[] = "browser_action"; |
| 18 const char kChromeURLOverrides[] = "chrome_url_overrides"; | 19 const char kChromeURLOverrides[] = "chrome_url_overrides"; |
| 19 const char kCommands[] = "commands"; | 20 const char kCommands[] = "commands"; |
| 20 const char kContentPack[] = "content_pack"; | 21 const char kContentPack[] = "content_pack"; |
| 21 const char kContentPackSites[] = "sites"; | 22 const char kContentPackSites[] = "sites"; |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 const char kScriptBadgeTitleIgnored[] = | 563 const char kScriptBadgeTitleIgnored[] = |
| 563 "default_title specified in script_badge manifest section will not be " | 564 "default_title specified in script_badge manifest section will not be " |
| 564 "used."; | 565 "used."; |
| 565 const char kWebRequestConflictsWithLazyBackground[] = | 566 const char kWebRequestConflictsWithLazyBackground[] = |
| 566 "The 'webRequest' API cannot be used with event pages."; | 567 "The 'webRequest' API cannot be used with event pages."; |
| 567 #if defined(OS_CHROMEOS) | 568 #if defined(OS_CHROMEOS) |
| 568 const char kIllegalPlugins[] = | 569 const char kIllegalPlugins[] = |
| 569 "Extensions cannot install plugins on Chrome OS"; | 570 "Extensions cannot install plugins on Chrome OS"; |
| 570 #endif | 571 #endif |
| 571 } // namespace extension_manifest_errors | 572 } // namespace extension_manifest_errors |
| OLD | NEW |