| 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[]; | |
| 244 extern const char kInvalidVersion[]; | 240 extern const char kInvalidVersion[]; |
| 245 extern const char kInvalidWebAccessibleResourcesList[]; | 241 extern const char kInvalidWebAccessibleResourcesList[]; |
| 246 extern const char kInvalidWebAccessibleResource[]; | 242 extern const char kInvalidWebAccessibleResource[]; |
| 247 extern const char kInvalidWebURL[]; | 243 extern const char kInvalidWebURL[]; |
| 248 extern const char kInvalidWebURLs[]; | 244 extern const char kInvalidWebURLs[]; |
| 249 extern const char kInvalidZipHash[]; | 245 extern const char kInvalidZipHash[]; |
| 250 extern const char kInsecureContentSecurityPolicy[]; | 246 extern const char kInsecureContentSecurityPolicy[]; |
| 251 extern const char kLaunchPathAndExtentAreExclusive[]; | 247 extern const char kLaunchPathAndExtentAreExclusive[]; |
| 252 extern const char kLaunchPathAndURLAreExclusive[]; | 248 extern const char kLaunchPathAndURLAreExclusive[]; |
| 253 extern const char kLaunchURLRequired[]; | 249 extern const char kLaunchURLRequired[]; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 270 extern const char kScriptBadgeRequiresFlag[]; | 266 extern const char kScriptBadgeRequiresFlag[]; |
| 271 extern const char kScriptBadgeIconIgnored[]; | 267 extern const char kScriptBadgeIconIgnored[]; |
| 272 extern const char kScriptBadgeTitleIgnored[]; | 268 extern const char kScriptBadgeTitleIgnored[]; |
| 273 extern const char kWebRequestConflictsWithLazyBackground[]; | 269 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 274 #if defined(OS_CHROMEOS) | 270 #if defined(OS_CHROMEOS) |
| 275 extern const char kIllegalPlugins[]; | 271 extern const char kIllegalPlugins[]; |
| 276 #endif | 272 #endif |
| 277 } // namespace extension_manifest_errors | 273 } // namespace extension_manifest_errors |
| 278 | 274 |
| 279 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 275 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |