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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 extern const char kInvalidKioskEnabled[]; | 164 extern const char kInvalidKioskEnabled[]; |
165 extern const char kInvalidLaunchContainer[]; | 165 extern const char kInvalidLaunchContainer[]; |
166 extern const char kInvalidLaunchValue[]; | 166 extern const char kInvalidLaunchValue[]; |
167 extern const char kInvalidLaunchValueContainer[]; | 167 extern const char kInvalidLaunchValueContainer[]; |
168 extern const char kInvalidManifest[]; | 168 extern const char kInvalidManifest[]; |
169 extern const char kInvalidManifestVersion[]; | 169 extern const char kInvalidManifestVersion[]; |
170 extern const char kInvalidManifestVersionOld[]; | 170 extern const char kInvalidManifestVersionOld[]; |
171 extern const char kInvalidMatch[]; | 171 extern const char kInvalidMatch[]; |
172 extern const char kInvalidMatchCount[]; | 172 extern const char kInvalidMatchCount[]; |
173 extern const char kInvalidMatches[]; | 173 extern const char kInvalidMatches[]; |
| 174 extern const char kInvalidMDnsServiceTypes[]; |
174 extern const char kInvalidMIMETypes[]; | 175 extern const char kInvalidMIMETypes[]; |
175 extern const char kInvalidMimeTypesHandler[]; | 176 extern const char kInvalidMimeTypesHandler[]; |
176 extern const char kInvalidMinimumChromeVersion[]; | 177 extern const char kInvalidMinimumChromeVersion[]; |
177 extern const char kInvalidNaClModules[]; | 178 extern const char kInvalidNaClModules[]; |
178 extern const char kInvalidNaClModulesMIMEType[]; | 179 extern const char kInvalidNaClModulesMIMEType[]; |
179 extern const char kInvalidNaClModulesPath[]; | 180 extern const char kInvalidNaClModulesPath[]; |
180 extern const char kInvalidName[]; | 181 extern const char kInvalidName[]; |
181 extern const char kInvalidOAuth2AutoApprove[]; | 182 extern const char kInvalidOAuth2AutoApprove[]; |
182 extern const char kInvalidOAuth2ClientId[]; | 183 extern const char kInvalidOAuth2ClientId[]; |
183 extern const char kInvalidOAuth2Scopes[]; | 184 extern const char kInvalidOAuth2Scopes[]; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 extern const char kScriptBadgeRequiresFlag[]; | 262 extern const char kScriptBadgeRequiresFlag[]; |
262 extern const char kScriptBadgeIconIgnored[]; | 263 extern const char kScriptBadgeIconIgnored[]; |
263 extern const char kScriptBadgeTitleIgnored[]; | 264 extern const char kScriptBadgeTitleIgnored[]; |
264 extern const char kWebRequestConflictsWithLazyBackground[]; | 265 extern const char kWebRequestConflictsWithLazyBackground[]; |
265 #if defined(OS_CHROMEOS) | 266 #if defined(OS_CHROMEOS) |
266 extern const char kIllegalPlugins[]; | 267 extern const char kIllegalPlugins[]; |
267 #endif | 268 #endif |
268 } // namespace extension_manifest_errors | 269 } // namespace extension_manifest_errors |
269 | 270 |
270 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 271 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |