| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 7 | 7 |
| 8 // Keys used in JSON representation of extensions. | 8 // Keys used in JSON representation of extensions. |
| 9 namespace extension_manifest_keys { | 9 namespace extension_manifest_keys { |
| 10 extern const wchar_t* kBackground; | 10 extern const wchar_t* kBackground; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 extern const char* kInvalidPrivacyBlacklists; | 83 extern const char* kInvalidPrivacyBlacklists; |
| 84 extern const char* kInvalidPrivacyBlacklistsPath; | 84 extern const char* kInvalidPrivacyBlacklistsPath; |
| 85 | 85 |
| 86 extern const char* kInvalidBackground; | 86 extern const char* kInvalidBackground; |
| 87 extern const char* kInvalidRunAt; | 87 extern const char* kInvalidRunAt; |
| 88 extern const char* kInvalidSignature; | 88 extern const char* kInvalidSignature; |
| 89 extern const char* kInvalidToolstrip; | 89 extern const char* kInvalidToolstrip; |
| 90 extern const char* kInvalidToolstrips; | 90 extern const char* kInvalidToolstrips; |
| 91 extern const char* kInvalidVersion; | 91 extern const char* kInvalidVersion; |
| 92 extern const char* kInvalidPageAction; | 92 extern const char* kInvalidPageAction; |
| 93 extern const char* kInvalidPageActionName; |
| 93 extern const char* kInvalidPageActionsList; | 94 extern const char* kInvalidPageActionsList; |
| 94 extern const char* kInvalidPageActionsListSize; | 95 extern const char* kInvalidPageActionsListSize; |
| 95 extern const char* kInvalidPageActionIconPath; | 96 extern const char* kInvalidPageActionIconPath; |
| 96 extern const char* kInvalidPageActionId; | 97 extern const char* kInvalidPageActionId; |
| 97 extern const char* kInvalidPageActionDefaultTitle; | 98 extern const char* kInvalidPageActionDefaultTitle; |
| 98 extern const char* kInvalidPageActionPopup; | 99 extern const char* kInvalidPageActionPopup; |
| 99 extern const char* kInvalidPageActionPopupHeight; | 100 extern const char* kInvalidPageActionPopupHeight; |
| 100 extern const char* kInvalidPageActionPopupPath; | 101 extern const char* kInvalidPageActionPopupPath; |
| 101 extern const char* kInvalidPageActionTypeValue; | 102 extern const char* kInvalidPageActionTypeValue; |
| 102 extern const char* kInvalidPermissions; | 103 extern const char* kInvalidPermissions; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 114 extern const char* kManifestUnreadable; | 115 extern const char* kManifestUnreadable; |
| 115 extern const char* kMissingFile; | 116 extern const char* kMissingFile; |
| 116 extern const char* kInvalidUpdateURL; | 117 extern const char* kInvalidUpdateURL; |
| 117 extern const char* kInvalidDefaultLocale; | 118 extern const char* kInvalidDefaultLocale; |
| 118 extern const char* kLocalesNoDefaultLocaleSpecified; | 119 extern const char* kLocalesNoDefaultLocaleSpecified; |
| 119 extern const char* kLocalesNoValidLocaleNamesListed; | 120 extern const char* kLocalesNoValidLocaleNamesListed; |
| 120 extern const char* kInvalidOptionsPage; | 121 extern const char* kInvalidOptionsPage; |
| 121 } // namespace extension_manifest_errors | 122 } // namespace extension_manifest_errors |
| 122 | 123 |
| 123 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 124 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |