| 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 27 matching lines...) Expand all Loading... |
| 38 const char kExport[] = "export"; | 38 const char kExport[] = "export"; |
| 39 const char kExternallyConnectable[] = "externally_connectable"; | 39 const char kExternallyConnectable[] = "externally_connectable"; |
| 40 const char kFileAccessList[] = "file_access"; | 40 const char kFileAccessList[] = "file_access"; |
| 41 const char kFileFilters[] = "file_filters"; | 41 const char kFileFilters[] = "file_filters"; |
| 42 const char kFileBrowserHandlers[] = "file_browser_handlers"; | 42 const char kFileBrowserHandlers[] = "file_browser_handlers"; |
| 43 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; | 43 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; |
| 44 const char kFileHandlers[] = "file_handlers"; | 44 const char kFileHandlers[] = "file_handlers"; |
| 45 const char kFileHandlerExtensions[] = "extensions"; | 45 const char kFileHandlerExtensions[] = "extensions"; |
| 46 const char kFileHandlerTitle[] = "title"; | 46 const char kFileHandlerTitle[] = "title"; |
| 47 const char kFileHandlerTypes[] = "types"; | 47 const char kFileHandlerTypes[] = "types"; |
| 48 const char kGlobal[] = "global"; |
| 48 const char kHomepageURL[] = "homepage_url"; | 49 const char kHomepageURL[] = "homepage_url"; |
| 49 const char kIcons[] = "icons"; | 50 const char kIcons[] = "icons"; |
| 50 const char kId[] = "id"; | 51 const char kId[] = "id"; |
| 51 const char kImport[] = "import"; | 52 const char kImport[] = "import"; |
| 52 const char kIncognito[] = "incognito"; | 53 const char kIncognito[] = "incognito"; |
| 53 const char kIncludeGlobs[] = "include_globs"; | 54 const char kIncludeGlobs[] = "include_globs"; |
| 54 const char kInputComponents[] = "input_components"; | 55 const char kInputComponents[] = "input_components"; |
| 55 const char kIsolation[] = "app.isolation"; | 56 const char kIsolation[] = "app.isolation"; |
| 56 const char kJs[] = "js"; | 57 const char kJs[] = "js"; |
| 57 const char kKey[] = "key"; | 58 const char kKey[] = "key"; |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 const char kWebRequestConflictsWithLazyBackground[] = | 664 const char kWebRequestConflictsWithLazyBackground[] = |
| 664 "The 'webRequest' API cannot be used with event pages."; | 665 "The 'webRequest' API cannot be used with event pages."; |
| 665 #if defined(OS_CHROMEOS) | 666 #if defined(OS_CHROMEOS) |
| 666 const char kIllegalPlugins[] = | 667 const char kIllegalPlugins[] = |
| 667 "Extensions cannot install plugins on Chrome OS"; | 668 "Extensions cannot install plugins on Chrome OS"; |
| 668 #endif | 669 #endif |
| 669 | 670 |
| 670 } // namespace manifest_errors | 671 } // namespace manifest_errors |
| 671 | 672 |
| 672 } // namespace extensions | 673 } // namespace extensions |
| OLD | NEW |