| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/extensions/extension_manifest_constants.h" | 5 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 6 | 6 |
| 7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
| 8 | 8 |
| 9 const char kAllFrames[] = "all_frames"; | 9 const char kAllFrames[] = "all_frames"; |
| 10 const char kAltKey[] = "altKey"; | 10 const char kAltKey[] = "altKey"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 const char kCtrlKey[] = "ctrlKey"; | 26 const char kCtrlKey[] = "ctrlKey"; |
| 27 const char kCurrentLocale[] = "current_locale"; | 27 const char kCurrentLocale[] = "current_locale"; |
| 28 const char kDefaultLocale[] = "default_locale"; | 28 const char kDefaultLocale[] = "default_locale"; |
| 29 const char kDescription[] = "description"; | 29 const char kDescription[] = "description"; |
| 30 const char kDevToolsPage[] = "devtools_page"; | 30 const char kDevToolsPage[] = "devtools_page"; |
| 31 const char kDisplayInLauncher[] = "display_in_launcher"; | 31 const char kDisplayInLauncher[] = "display_in_launcher"; |
| 32 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; | 32 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; |
| 33 const char kEventName[] = "event_name"; | 33 const char kEventName[] = "event_name"; |
| 34 const char kExcludeGlobs[] = "exclude_globs"; | 34 const char kExcludeGlobs[] = "exclude_globs"; |
| 35 const char kExcludeMatches[] = "exclude_matches"; | 35 const char kExcludeMatches[] = "exclude_matches"; |
| 36 const char kExternallyConnectable[] = "externally_connectable"; |
| 36 const char kFileAccessList[] = "file_access"; | 37 const char kFileAccessList[] = "file_access"; |
| 37 const char kFileFilters[] = "file_filters"; | 38 const char kFileFilters[] = "file_filters"; |
| 38 const char kFileBrowserHandlers[] = "file_browser_handlers"; | 39 const char kFileBrowserHandlers[] = "file_browser_handlers"; |
| 39 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; | 40 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; |
| 40 const char kFileHandlers[] = "file_handlers"; | 41 const char kFileHandlers[] = "file_handlers"; |
| 41 const char kFileHandlerTitle[] = "title"; | 42 const char kFileHandlerTitle[] = "title"; |
| 42 const char kFileHandlerTypes[] = "types"; | 43 const char kFileHandlerTypes[] = "types"; |
| 43 const char kHomepageURL[] = "homepage_url"; | 44 const char kHomepageURL[] = "homepage_url"; |
| 44 const char kIcons[] = "icons"; | 45 const char kIcons[] = "icons"; |
| 45 const char kId[] = "id"; | 46 const char kId[] = "id"; |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 const char kScriptBadgeTitleIgnored[] = | 563 const char kScriptBadgeTitleIgnored[] = |
| 563 "default_title specified in script_badge manifest section will not be " | 564 "default_title specified in script_badge manifest section will not be " |
| 564 "used."; | 565 "used."; |
| 565 const char kWebRequestConflictsWithLazyBackground[] = | 566 const char kWebRequestConflictsWithLazyBackground[] = |
| 566 "The 'webRequest' API cannot be used with event pages."; | 567 "The 'webRequest' API cannot be used with event pages."; |
| 567 #if defined(OS_CHROMEOS) | 568 #if defined(OS_CHROMEOS) |
| 568 const char kIllegalPlugins[] = | 569 const char kIllegalPlugins[] = |
| 569 "Extensions cannot install plugins on Chrome OS"; | 570 "Extensions cannot install plugins on Chrome OS"; |
| 570 #endif | 571 #endif |
| 571 } // namespace extension_manifest_errors | 572 } // namespace extension_manifest_errors |
| OLD | NEW |