| 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 26 matching lines...) Expand all Loading... |
| 37 const char kDefaultLocale[] = "default_locale"; | 37 const char kDefaultLocale[] = "default_locale"; |
| 38 const char kDescription[] = "description"; | 38 const char kDescription[] = "description"; |
| 39 const char kDevToolsPage[] = "devtools_page"; | 39 const char kDevToolsPage[] = "devtools_page"; |
| 40 const char kDisplayInLauncher[] = "display_in_launcher"; | 40 const char kDisplayInLauncher[] = "display_in_launcher"; |
| 41 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; | 41 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; |
| 42 const char kEventName[] = "event_name"; | 42 const char kEventName[] = "event_name"; |
| 43 const char kExcludeGlobs[] = "exclude_globs"; | 43 const char kExcludeGlobs[] = "exclude_globs"; |
| 44 const char kExcludeMatches[] = "exclude_matches"; | 44 const char kExcludeMatches[] = "exclude_matches"; |
| 45 const char kExport[] = "export"; | 45 const char kExport[] = "export"; |
| 46 const char kExternallyConnectable[] = "externally_connectable"; | 46 const char kExternallyConnectable[] = "externally_connectable"; |
| 47 const char kEventRules[] = "event_rules"; |
| 47 const char kFileAccessList[] = "file_access"; | 48 const char kFileAccessList[] = "file_access"; |
| 48 const char kFileFilters[] = "file_filters"; | 49 const char kFileFilters[] = "file_filters"; |
| 49 const char kFileBrowserHandlers[] = "file_browser_handlers"; | 50 const char kFileBrowserHandlers[] = "file_browser_handlers"; |
| 50 const char kFileHandlers[] = "file_handlers"; | 51 const char kFileHandlers[] = "file_handlers"; |
| 51 const char kFileHandlerExtensions[] = "extensions"; | 52 const char kFileHandlerExtensions[] = "extensions"; |
| 52 const char kFileHandlerTypes[] = "types"; | 53 const char kFileHandlerTypes[] = "types"; |
| 53 const char kGlobal[] = "global"; | 54 const char kGlobal[] = "global"; |
| 54 const char kHideBookmarkButton[] = "hide_bookmark_button"; | 55 const char kHideBookmarkButton[] = "hide_bookmark_button"; |
| 55 const char kHomepageURL[] = "homepage_url"; | 56 const char kHomepageURL[] = "homepage_url"; |
| 56 const char kIcons[] = "icons"; | 57 const char kIcons[] = "icons"; |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 "'file_system_provider_capabilities' section to be specified in the " | 720 "'file_system_provider_capabilities' section to be specified in the " |
| 720 "manifest."; | 721 "manifest."; |
| 721 const char kInvalidFileSystemProviderMissingPermission[] = | 722 const char kInvalidFileSystemProviderMissingPermission[] = |
| 722 "The 'file_system_provider_capabilities' section requires the " | 723 "The 'file_system_provider_capabilities' section requires the " |
| 723 "'fileSystemProvider' permission to be specified in the manifest."; | 724 "'fileSystemProvider' permission to be specified in the manifest."; |
| 724 #endif | 725 #endif |
| 725 | 726 |
| 726 } // namespace manifest_errors | 727 } // namespace manifest_errors |
| 727 | 728 |
| 728 } // namespace extensions | 729 } // namespace extensions |
| OLD | NEW |