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 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
7 | 7 |
8 namespace extensions { | 8 namespace extensions { |
9 | 9 |
10 // Keys used in JSON representation of extensions. | 10 // Keys used in JSON representation of extensions. |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 extern const char kName[]; | 94 extern const char kName[]; |
95 extern const char kOAuth2[]; | 95 extern const char kOAuth2[]; |
96 extern const char kOAuth2AutoApprove[]; | 96 extern const char kOAuth2AutoApprove[]; |
97 extern const char kOAuth2ClientId[]; | 97 extern const char kOAuth2ClientId[]; |
98 extern const char kOAuth2Scopes[]; | 98 extern const char kOAuth2Scopes[]; |
99 extern const char kOfflineEnabled[]; | 99 extern const char kOfflineEnabled[]; |
100 extern const char kOmnibox[]; | 100 extern const char kOmnibox[]; |
101 extern const char kOmniboxKeyword[]; | 101 extern const char kOmniboxKeyword[]; |
102 extern const char kOptionalPermissions[]; | 102 extern const char kOptionalPermissions[]; |
103 extern const char kOptionsPage[]; | 103 extern const char kOptionsPage[]; |
| 104 extern const char kOverrideHomepage[]; |
| 105 extern const char kOverrideSearchProvider[]; |
| 106 extern const char kOverrideStartupPage[]; |
104 extern const char kPageAction[]; | 107 extern const char kPageAction[]; |
105 extern const char kPageActionDefaultIcon[]; | 108 extern const char kPageActionDefaultIcon[]; |
106 extern const char kPageActionDefaultPopup[]; | 109 extern const char kPageActionDefaultPopup[]; |
107 extern const char kPageActionDefaultTitle[]; | 110 extern const char kPageActionDefaultTitle[]; |
108 extern const char kPageActionIcons[]; | 111 extern const char kPageActionIcons[]; |
109 extern const char kPageActionId[]; | 112 extern const char kPageActionId[]; |
110 extern const char kPageActionPopup[]; | 113 extern const char kPageActionPopup[]; |
111 extern const char kPageActionPopupPath[]; | 114 extern const char kPageActionPopupPath[]; |
112 extern const char kPageActions[]; | 115 extern const char kPageActions[]; |
113 extern const char kPermissions[]; | 116 extern const char kPermissions[]; |
114 extern const char kPlatformAppBackground[]; | 117 extern const char kPlatformAppBackground[]; |
115 extern const char kPlatformAppBackgroundPage[]; | 118 extern const char kPlatformAppBackgroundPage[]; |
116 extern const char kPlatformAppBackgroundScripts[]; | 119 extern const char kPlatformAppBackgroundScripts[]; |
117 extern const char kPlatformAppContentSecurityPolicy[]; | 120 extern const char kPlatformAppContentSecurityPolicy[]; |
118 extern const char kPlatformAppServiceWorker[]; | 121 extern const char kPlatformAppServiceWorker[]; |
119 extern const char kPlatformAppServiceWorkerScript[]; | 122 extern const char kPlatformAppServiceWorkerScript[]; |
120 extern const char kPlugins[]; | 123 extern const char kPlugins[]; |
121 extern const char kPluginsPath[]; | 124 extern const char kPluginsPath[]; |
122 extern const char kPluginsPublic[]; | 125 extern const char kPluginsPublic[]; |
123 extern const char kPublicKey[]; | 126 extern const char kPublicKey[]; |
124 extern const char kRemoveButton[]; | 127 extern const char kRemoveButton[]; |
125 extern const char kResources[]; | 128 extern const char kResources[]; |
126 extern const char kRequirements[]; | 129 extern const char kRequirements[]; |
127 extern const char kRunAt[]; | 130 extern const char kRunAt[]; |
128 extern const char kSandboxedPages[]; | 131 extern const char kSandboxedPages[]; |
129 extern const char kSandboxedPagesCSP[]; | 132 extern const char kSandboxedPagesCSP[]; |
130 extern const char kScriptBadge[]; | 133 extern const char kScriptBadge[]; |
131 extern const char kSearchProvider[]; | |
132 extern const char kSettingsOverride[]; | 134 extern const char kSettingsOverride[]; |
133 extern const char kSettingsOverrideAlternateUrls[]; | 135 extern const char kSettingsOverrideAlternateUrls[]; |
134 extern const char kShiftKey[]; | 136 extern const char kShiftKey[]; |
135 extern const char kShortcutKey[]; | 137 extern const char kShortcutKey[]; |
136 extern const char kShortName[]; | 138 extern const char kShortName[]; |
137 extern const char kSignature[]; | 139 extern const char kSignature[]; |
138 extern const char kSockets[]; | 140 extern const char kSockets[]; |
139 extern const char kSpellcheck[]; | 141 extern const char kSpellcheck[]; |
140 extern const char kSpellcheckDictionaryFormat[]; | 142 extern const char kSpellcheckDictionaryFormat[]; |
141 extern const char kSpellcheckDictionaryLanguage[]; | 143 extern const char kSpellcheckDictionaryLanguage[]; |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 extern const char kWebRequestConflictsWithLazyBackground[]; | 470 extern const char kWebRequestConflictsWithLazyBackground[]; |
469 #if defined(OS_CHROMEOS) | 471 #if defined(OS_CHROMEOS) |
470 extern const char kIllegalPlugins[]; | 472 extern const char kIllegalPlugins[]; |
471 #endif | 473 #endif |
472 | 474 |
473 } // namespace manifest_errors | 475 } // namespace manifest_errors |
474 | 476 |
475 } // namespace extensions | 477 } // namespace extensions |
476 | 478 |
477 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 479 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |