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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 extern const char kInvalidThemeImagesMissing[]; | 230 extern const char kInvalidThemeImagesMissing[]; |
231 extern const char kInvalidThemeTints[]; | 231 extern const char kInvalidThemeTints[]; |
232 extern const char kInvalidTts[]; | 232 extern const char kInvalidTts[]; |
233 extern const char kInvalidTtsVoices[]; | 233 extern const char kInvalidTtsVoices[]; |
234 extern const char kInvalidTtsVoicesEventTypes[]; | 234 extern const char kInvalidTtsVoicesEventTypes[]; |
235 extern const char kInvalidTtsVoicesGender[]; | 235 extern const char kInvalidTtsVoicesGender[]; |
236 extern const char kInvalidTtsVoicesLang[]; | 236 extern const char kInvalidTtsVoicesLang[]; |
237 extern const char kInvalidTtsVoicesVoiceName[]; | 237 extern const char kInvalidTtsVoicesVoiceName[]; |
238 extern const char kInvalidUpdateURL[]; | 238 extern const char kInvalidUpdateURL[]; |
239 extern const char kInvalidURLPatternError[]; | 239 extern const char kInvalidURLPatternError[]; |
| 240 extern const char kInvalidURLHandlers[]; |
| 241 extern const char kInvalidURLHandlerPatternElement[]; |
| 242 extern const char kInvalidURLHandlerTitle[]; |
| 243 extern const char kInvalidURLHandlerPattern[]; |
240 extern const char kInvalidVersion[]; | 244 extern const char kInvalidVersion[]; |
241 extern const char kInvalidWebAccessibleResourcesList[]; | 245 extern const char kInvalidWebAccessibleResourcesList[]; |
242 extern const char kInvalidWebAccessibleResource[]; | 246 extern const char kInvalidWebAccessibleResource[]; |
243 extern const char kInvalidWebURL[]; | 247 extern const char kInvalidWebURL[]; |
244 extern const char kInvalidWebURLs[]; | 248 extern const char kInvalidWebURLs[]; |
245 extern const char kInvalidZipHash[]; | 249 extern const char kInvalidZipHash[]; |
246 extern const char kInsecureContentSecurityPolicy[]; | 250 extern const char kInsecureContentSecurityPolicy[]; |
247 extern const char kLaunchPathAndExtentAreExclusive[]; | 251 extern const char kLaunchPathAndExtentAreExclusive[]; |
248 extern const char kLaunchPathAndURLAreExclusive[]; | 252 extern const char kLaunchPathAndURLAreExclusive[]; |
249 extern const char kLaunchURLRequired[]; | 253 extern const char kLaunchURLRequired[]; |
(...skipping 16 matching lines...) Expand all Loading... |
266 extern const char kScriptBadgeRequiresFlag[]; | 270 extern const char kScriptBadgeRequiresFlag[]; |
267 extern const char kScriptBadgeIconIgnored[]; | 271 extern const char kScriptBadgeIconIgnored[]; |
268 extern const char kScriptBadgeTitleIgnored[]; | 272 extern const char kScriptBadgeTitleIgnored[]; |
269 extern const char kWebRequestConflictsWithLazyBackground[]; | 273 extern const char kWebRequestConflictsWithLazyBackground[]; |
270 #if defined(OS_CHROMEOS) | 274 #if defined(OS_CHROMEOS) |
271 extern const char kIllegalPlugins[]; | 275 extern const char kIllegalPlugins[]; |
272 #endif | 276 #endif |
273 } // namespace extension_manifest_errors | 277 } // namespace extension_manifest_errors |
274 | 278 |
275 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 279 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |