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 18 matching lines...) Expand all Loading... | |
29 const char kDefaultLocale[] = "default_locale"; | 29 const char kDefaultLocale[] = "default_locale"; |
30 const char kDescription[] = "description"; | 30 const char kDescription[] = "description"; |
31 const char kDevToolsPage[] = "devtools_page"; | 31 const char kDevToolsPage[] = "devtools_page"; |
32 const char kDisplayInLauncher[] = "display_in_launcher"; | 32 const char kDisplayInLauncher[] = "display_in_launcher"; |
33 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; | 33 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; |
34 const char kEventName[] = "event_name"; | 34 const char kEventName[] = "event_name"; |
35 const char kExcludeGlobs[] = "exclude_globs"; | 35 const char kExcludeGlobs[] = "exclude_globs"; |
36 const char kExcludeMatches[] = "exclude_matches"; | 36 const char kExcludeMatches[] = "exclude_matches"; |
37 const char kExport[] = "export"; | 37 const char kExport[] = "export"; |
38 const char kExternallyConnectable[] = "externally_connectable"; | 38 const char kExternallyConnectable[] = "externally_connectable"; |
39 const char kFeedbackPrivate[] = "feedbackPrivate"; | |
asargent_no_longer_on_chrome
2013/06/17 19:32:40
nit: Do you need this? This is only needed if you
rkc
2013/06/17 21:48:19
Ah, I misunderstood the purpose. I thought this wa
| |
39 const char kFileAccessList[] = "file_access"; | 40 const char kFileAccessList[] = "file_access"; |
40 const char kFileFilters[] = "file_filters"; | 41 const char kFileFilters[] = "file_filters"; |
41 const char kFileBrowserHandlers[] = "file_browser_handlers"; | 42 const char kFileBrowserHandlers[] = "file_browser_handlers"; |
42 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; | 43 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; |
43 const char kFileHandlers[] = "file_handlers"; | 44 const char kFileHandlers[] = "file_handlers"; |
44 const char kFileHandlerExtensions[] = "extensions"; | 45 const char kFileHandlerExtensions[] = "extensions"; |
45 const char kFileHandlerTitle[] = "title"; | 46 const char kFileHandlerTitle[] = "title"; |
46 const char kFileHandlerTypes[] = "types"; | 47 const char kFileHandlerTypes[] = "types"; |
47 const char kHomepageURL[] = "homepage_url"; | 48 const char kHomepageURL[] = "homepage_url"; |
48 const char kIcons[] = "icons"; | 49 const char kIcons[] = "icons"; |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
614 const char kScriptBadgeTitleIgnored[] = | 615 const char kScriptBadgeTitleIgnored[] = |
615 "default_title specified in script_badge manifest section will not be " | 616 "default_title specified in script_badge manifest section will not be " |
616 "used."; | 617 "used."; |
617 const char kWebRequestConflictsWithLazyBackground[] = | 618 const char kWebRequestConflictsWithLazyBackground[] = |
618 "The 'webRequest' API cannot be used with event pages."; | 619 "The 'webRequest' API cannot be used with event pages."; |
619 #if defined(OS_CHROMEOS) | 620 #if defined(OS_CHROMEOS) |
620 const char kIllegalPlugins[] = | 621 const char kIllegalPlugins[] = |
621 "Extensions cannot install plugins on Chrome OS"; | 622 "Extensions cannot install plugins on Chrome OS"; |
622 #endif | 623 #endif |
623 } // namespace extension_manifest_errors | 624 } // namespace extension_manifest_errors |
OLD | NEW |