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 "extensions/common/manifest_constants.h" | 5 #include "extensions/common/manifest_constants.h" |
6 | 6 |
7 namespace extensions { | 7 namespace extensions { |
8 | 8 |
9 namespace manifest_keys { | 9 namespace manifest_keys { |
10 | 10 |
11 const char kAllFrames[] = "all_frames"; | 11 const char kAllFrames[] = "all_frames"; |
12 const char kAltKey[] = "altKey"; | 12 const char kAltKey[] = "altKey"; |
13 const char kApp[] = "app"; | 13 const char kApp[] = "app"; |
14 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; | 14 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; |
15 const char kBackgroundPage[] = "background.page"; | 15 const char kBackgroundPage[] = "background.page"; |
16 const char kBackgroundPageLegacy[] = "background_page"; | 16 const char kBackgroundPageLegacy[] = "background_page"; |
17 const char kBackgroundPersistent[] = "background.persistent"; | 17 const char kBackgroundPersistent[] = "background.persistent"; |
18 const char kBackgroundScripts[] = "background.scripts"; | 18 const char kBackgroundScripts[] = "background.scripts"; |
| 19 const char kBluetooth[] = "bluetooth"; |
19 const char kBookmarkUI[] = "chrome_settings_overrides.bookmarks_ui"; | 20 const char kBookmarkUI[] = "chrome_settings_overrides.bookmarks_ui"; |
20 const char kBrowserAction[] = "browser_action"; | 21 const char kBrowserAction[] = "browser_action"; |
21 const char kChromeURLOverrides[] = "chrome_url_overrides"; | 22 const char kChromeURLOverrides[] = "chrome_url_overrides"; |
22 const char kCommands[] = "commands"; | 23 const char kCommands[] = "commands"; |
23 const char kContentPack[] = "content_pack"; | 24 const char kContentPack[] = "content_pack"; |
24 const char kContentPackSites[] = "sites"; | 25 const char kContentPackSites[] = "sites"; |
25 const char kContentScripts[] = "content_scripts"; | 26 const char kContentScripts[] = "content_scripts"; |
26 const char kContentSecurityPolicy[] = "content_security_policy"; | 27 const char kContentSecurityPolicy[] = "content_security_policy"; |
27 const char kConvertedFromUserScript[] = "converted_from_user_script"; | 28 const char kConvertedFromUserScript[] = "converted_from_user_script"; |
28 const char kCss[] = "css"; | 29 const char kCss[] = "css"; |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 const char kWebRequestConflictsWithLazyBackground[] = | 702 const char kWebRequestConflictsWithLazyBackground[] = |
702 "The 'webRequest' API cannot be used with event pages."; | 703 "The 'webRequest' API cannot be used with event pages."; |
703 #if defined(OS_CHROMEOS) | 704 #if defined(OS_CHROMEOS) |
704 const char kIllegalPlugins[] = | 705 const char kIllegalPlugins[] = |
705 "Extensions cannot install plugins on Chrome OS"; | 706 "Extensions cannot install plugins on Chrome OS"; |
706 #endif | 707 #endif |
707 | 708 |
708 } // namespace manifest_errors | 709 } // namespace manifest_errors |
709 | 710 |
710 } // namespace extensions | 711 } // namespace extensions |
OLD | NEW |