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 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; | 44 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; |
45 const char kFileHandlers[] = "file_handlers"; | 45 const char kFileHandlers[] = "file_handlers"; |
46 const char kFileHandlerExtensions[] = "extensions"; | 46 const char kFileHandlerExtensions[] = "extensions"; |
47 const char kFileHandlerTitle[] = "title"; | 47 const char kFileHandlerTitle[] = "title"; |
48 const char kFileHandlerTypes[] = "types"; | 48 const char kFileHandlerTypes[] = "types"; |
49 const char kGlobal[] = "global"; | 49 const char kGlobal[] = "global"; |
50 const char kHideBookmarkButton[] = "hide_bookmark_button"; | 50 const char kHideBookmarkButton[] = "hide_bookmark_button"; |
51 const char kHomepageURL[] = "homepage_url"; | 51 const char kHomepageURL[] = "homepage_url"; |
52 const char kIcons[] = "icons"; | 52 const char kIcons[] = "icons"; |
53 const char kId[] = "id"; | 53 const char kId[] = "id"; |
| 54 const char kImeOptionsPage[] = "options_page"; |
54 const char kImport[] = "import"; | 55 const char kImport[] = "import"; |
55 const char kIncognito[] = "incognito"; | 56 const char kIncognito[] = "incognito"; |
56 const char kIncludeGlobs[] = "include_globs"; | 57 const char kIncludeGlobs[] = "include_globs"; |
57 const char kInputComponents[] = "input_components"; | 58 const char kInputComponents[] = "input_components"; |
58 const char kInputView[] = "input_view"; | 59 const char kInputView[] = "input_view"; |
59 const char kIsolation[] = "app.isolation"; | 60 const char kIsolation[] = "app.isolation"; |
60 const char kJs[] = "js"; | 61 const char kJs[] = "js"; |
61 const char kKey[] = "key"; | 62 const char kKey[] = "key"; |
62 const char kKeycode[] = "keyCode"; | 63 const char kKeycode[] = "keyCode"; |
63 const char kKioskEnabled[] = "kiosk_enabled"; | 64 const char kKioskEnabled[] = "kiosk_enabled"; |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 const char kWebRequestConflictsWithLazyBackground[] = | 688 const char kWebRequestConflictsWithLazyBackground[] = |
688 "The 'webRequest' API cannot be used with event pages."; | 689 "The 'webRequest' API cannot be used with event pages."; |
689 #if defined(OS_CHROMEOS) | 690 #if defined(OS_CHROMEOS) |
690 const char kIllegalPlugins[] = | 691 const char kIllegalPlugins[] = |
691 "Extensions cannot install plugins on Chrome OS"; | 692 "Extensions cannot install plugins on Chrome OS"; |
692 #endif | 693 #endif |
693 | 694 |
694 } // namespace manifest_errors | 695 } // namespace manifest_errors |
695 | 696 |
696 } // namespace extensions | 697 } // namespace extensions |
OLD | NEW |