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 kAboutPage[] = "about_page"; | 11 const char kAboutPage[] = "about_page"; |
12 const char kAllFrames[] = "all_frames"; | 12 const char kAllFrames[] = "all_frames"; |
13 const char kAltKey[] = "altKey"; | 13 const char kAltKey[] = "altKey"; |
14 const char kApp[] = "app"; | 14 const char kApp[] = "app"; |
| 15 const char kAppIconColor[] = "app.icon_color"; |
15 const char kAutomation[] = "automation"; | 16 const char kAutomation[] = "automation"; |
16 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; | 17 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; |
17 const char kBackgroundPage[] = "background.page"; | 18 const char kBackgroundPage[] = "background.page"; |
18 const char kBackgroundPageLegacy[] = "background_page"; | 19 const char kBackgroundPageLegacy[] = "background_page"; |
19 const char kBackgroundPersistent[] = "background.persistent"; | 20 const char kBackgroundPersistent[] = "background.persistent"; |
20 const char kBackgroundScripts[] = "background.scripts"; | 21 const char kBackgroundScripts[] = "background.scripts"; |
21 const char kBluetooth[] = "bluetooth"; | 22 const char kBluetooth[] = "bluetooth"; |
22 const char kBookmarkUI[] = "bookmarks_ui"; | 23 const char kBookmarkUI[] = "bookmarks_ui"; |
23 const char kBrowserAction[] = "browser_action"; | 24 const char kBrowserAction[] = "browser_action"; |
24 const char kChromeURLOverrides[] = "chrome_url_overrides"; | 25 const char kChromeURLOverrides[] = "chrome_url_overrides"; |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 const char kWebRequestConflictsWithLazyBackground[] = | 692 const char kWebRequestConflictsWithLazyBackground[] = |
692 "The 'webRequest' API cannot be used with event pages."; | 693 "The 'webRequest' API cannot be used with event pages."; |
693 #if defined(OS_CHROMEOS) | 694 #if defined(OS_CHROMEOS) |
694 const char kIllegalPlugins[] = | 695 const char kIllegalPlugins[] = |
695 "Extensions cannot install plugins on Chrome OS"; | 696 "Extensions cannot install plugins on Chrome OS"; |
696 #endif | 697 #endif |
697 | 698 |
698 } // namespace manifest_errors | 699 } // namespace manifest_errors |
699 | 700 |
700 } // namespace extensions | 701 } // namespace extensions |
OLD | NEW |