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