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 kDisplayInLauncher[] = "display_in_launcher"; | 37 const char kDisplayInLauncher[] = "display_in_launcher"; |
38 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; | 38 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; |
39 const char kEventName[] = "event_name"; | 39 const char kEventName[] = "event_name"; |
40 const char kExcludeGlobs[] = "exclude_globs"; | 40 const char kExcludeGlobs[] = "exclude_globs"; |
41 const char kExcludeMatches[] = "exclude_matches"; | 41 const char kExcludeMatches[] = "exclude_matches"; |
42 const char kExport[] = "export"; | 42 const char kExport[] = "export"; |
43 const char kExternallyConnectable[] = "externally_connectable"; | 43 const char kExternallyConnectable[] = "externally_connectable"; |
44 const char kFileAccessList[] = "file_access"; | 44 const char kFileAccessList[] = "file_access"; |
45 const char kFileFilters[] = "file_filters"; | 45 const char kFileFilters[] = "file_filters"; |
46 const char kFileBrowserHandlers[] = "file_browser_handlers"; | 46 const char kFileBrowserHandlers[] = "file_browser_handlers"; |
47 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; | |
48 const char kFileHandlers[] = "file_handlers"; | 47 const char kFileHandlers[] = "file_handlers"; |
49 const char kFileHandlerExtensions[] = "extensions"; | 48 const char kFileHandlerExtensions[] = "extensions"; |
50 const char kFileHandlerTitle[] = "title"; | 49 const char kFileHandlerTitle[] = "title"; |
51 const char kFileHandlerTypes[] = "types"; | 50 const char kFileHandlerTypes[] = "types"; |
52 const char kGlobal[] = "global"; | 51 const char kGlobal[] = "global"; |
53 const char kHideBookmarkButton[] = "hide_bookmark_button"; | 52 const char kHideBookmarkButton[] = "hide_bookmark_button"; |
54 const char kHomepageURL[] = "homepage_url"; | 53 const char kHomepageURL[] = "homepage_url"; |
55 const char kIcons[] = "icons"; | 54 const char kIcons[] = "icons"; |
56 const char kId[] = "id"; | 55 const char kId[] = "id"; |
57 const char kImeOptionsPage[] = "options_page"; | 56 const char kImeOptionsPage[] = "options_page"; |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 const char kInvalidExportWhitelist[] = | 339 const char kInvalidExportWhitelist[] = |
341 "Invalid value for 'export.whitelist'."; | 340 "Invalid value for 'export.whitelist'."; |
342 const char kInvalidExportWhitelistString[] = | 341 const char kInvalidExportWhitelistString[] = |
343 "Invalid value for 'export.whitelist[*]'."; | 342 "Invalid value for 'export.whitelist[*]'."; |
344 const char kInvalidFileAccessList[] = | 343 const char kInvalidFileAccessList[] = |
345 "Invalid value for 'file_access'."; | 344 "Invalid value for 'file_access'."; |
346 const char kInvalidFileAccessValue[] = | 345 const char kInvalidFileAccessValue[] = |
347 "Invalid value for 'file_access[*]'."; | 346 "Invalid value for 'file_access[*]'."; |
348 const char kInvalidFileBrowserHandler[] = | 347 const char kInvalidFileBrowserHandler[] = |
349 "Invalid value for 'file_browser_handlers'."; | 348 "Invalid value for 'file_browser_handlers'."; |
350 const char kInvalidMediaGalleriesHandler[] = | |
351 "Invalid value for 'media_galleries_handlers'."; | |
352 const char kInvalidFileFiltersList[] = | 349 const char kInvalidFileFiltersList[] = |
353 "Invalid value for 'file_filters'."; | 350 "Invalid value for 'file_filters'."; |
354 const char kInvalidFileFilterValue[] = | 351 const char kInvalidFileFilterValue[] = |
355 "Invalid value for 'file_filters[*]'."; | 352 "Invalid value for 'file_filters[*]'."; |
356 const char kInvalidFileHandlers[] = | 353 const char kInvalidFileHandlers[] = |
357 "Invalid value for 'file_handlers'."; | 354 "Invalid value for 'file_handlers'."; |
358 const char kInvalidFileHandlersTooManyTypesAndExtensions[] = | 355 const char kInvalidFileHandlersTooManyTypesAndExtensions[] = |
359 "Too many MIME and extension file_handlers have been declared."; | 356 "Too many MIME and extension file_handlers have been declared."; |
360 const char kInvalidFileHandlerExtension[] = | 357 const char kInvalidFileHandlerExtension[] = |
361 "Invalid value for 'file_handlers[*].extensions'."; | 358 "Invalid value for 'file_handlers[*].extensions'."; |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 const char kWebRequestConflictsWithLazyBackground[] = | 725 const char kWebRequestConflictsWithLazyBackground[] = |
729 "The 'webRequest' API cannot be used with event pages."; | 726 "The 'webRequest' API cannot be used with event pages."; |
730 #if defined(OS_CHROMEOS) | 727 #if defined(OS_CHROMEOS) |
731 const char kIllegalPlugins[] = | 728 const char kIllegalPlugins[] = |
732 "Extensions cannot install plugins on Chrome OS"; | 729 "Extensions cannot install plugins on Chrome OS"; |
733 #endif | 730 #endif |
734 | 731 |
735 } // namespace manifest_errors | 732 } // namespace manifest_errors |
736 | 733 |
737 } // namespace extensions | 734 } // namespace extensions |
OLD | NEW |