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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 extern const char kLocalesNoDefaultLocaleSpecified[]; | 330 extern const char kLocalesNoDefaultLocaleSpecified[]; |
331 extern const char kLocalesNoDefaultMessages[]; | 331 extern const char kLocalesNoDefaultMessages[]; |
332 extern const char kLocalesNoValidLocaleNamesListed[]; | 332 extern const char kLocalesNoValidLocaleNamesListed[]; |
333 extern const char kLocalesTreeMissing[]; | 333 extern const char kLocalesTreeMissing[]; |
334 extern const char kManifestParseError[]; | 334 extern const char kManifestParseError[]; |
335 extern const char kManifestUnreadable[]; | 335 extern const char kManifestUnreadable[]; |
336 extern const char kMissingFile[]; | 336 extern const char kMissingFile[]; |
337 extern const char kMultipleOverrides[]; | 337 extern const char kMultipleOverrides[]; |
338 extern const char kNoWildCardsInPaths[]; | 338 extern const char kNoWildCardsInPaths[]; |
339 extern const char kPermissionNotAllowed[]; | 339 extern const char kPermissionNotAllowed[]; |
| 340 extern const char kPermissionNotAllowedInManifest[]; |
340 extern const char kPlatformAppNeedsManifestVersion2[]; | 341 extern const char kPlatformAppNeedsManifestVersion2[]; |
341 extern const char kOneUISurfaceOnly[]; | 342 extern const char kOneUISurfaceOnly[]; |
342 extern const char kReservedMessageFound[]; | 343 extern const char kReservedMessageFound[]; |
343 extern const char kScriptBadgeRequiresFlag[]; | 344 extern const char kScriptBadgeRequiresFlag[]; |
344 extern const char kScriptBadgeIconIgnored[]; | 345 extern const char kScriptBadgeIconIgnored[]; |
345 extern const char kScriptBadgeTitleIgnored[]; | 346 extern const char kScriptBadgeTitleIgnored[]; |
346 extern const char kWebRequestConflictsWithLazyBackground[]; | 347 extern const char kWebRequestConflictsWithLazyBackground[]; |
347 #if defined(OS_CHROMEOS) | 348 #if defined(OS_CHROMEOS) |
348 extern const char kIllegalPlugins[]; | 349 extern const char kIllegalPlugins[]; |
349 #endif | 350 #endif |
350 } // namespace extension_manifest_errors | 351 } // namespace extension_manifest_errors |
351 | 352 |
352 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 353 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |