| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 extern const char* kInvalidContentScriptsList; | 70 extern const char* kInvalidContentScriptsList; |
| 71 extern const char* kInvalidCss; | 71 extern const char* kInvalidCss; |
| 72 extern const char* kInvalidCssList; | 72 extern const char* kInvalidCssList; |
| 73 extern const char* kInvalidDescription; | 73 extern const char* kInvalidDescription; |
| 74 extern const char* kInvalidIcons; | 74 extern const char* kInvalidIcons; |
| 75 extern const char* kInvalidIconPath; | 75 extern const char* kInvalidIconPath; |
| 76 extern const char* kInvalidGlobList; | 76 extern const char* kInvalidGlobList; |
| 77 extern const char* kInvalidGlob; | 77 extern const char* kInvalidGlob; |
| 78 extern const char* kInvalidJs; | 78 extern const char* kInvalidJs; |
| 79 extern const char* kInvalidJsList; | 79 extern const char* kInvalidJsList; |
| 80 extern const char* kInvalidJsMatches; |
| 80 extern const char* kInvalidKey; | 81 extern const char* kInvalidKey; |
| 81 extern const char* kInvalidManifest; | 82 extern const char* kInvalidManifest; |
| 82 extern const char* kInvalidMatchCount; | 83 extern const char* kInvalidMatchCount; |
| 83 extern const char* kInvalidMatch; | 84 extern const char* kInvalidMatch; |
| 84 extern const char* kInvalidMatches; | 85 extern const char* kInvalidMatches; |
| 85 extern const char* kInvalidName; | 86 extern const char* kInvalidName; |
| 86 extern const char* kInvalidPlugins; | 87 extern const char* kInvalidPlugins; |
| 87 extern const char* kInvalidPluginsPath; | 88 extern const char* kInvalidPluginsPath; |
| 88 extern const char* kInvalidPluginsPublic; | 89 extern const char* kInvalidPluginsPublic; |
| 89 extern const char* kInvalidPrivacyBlacklists; | 90 extern const char* kInvalidPrivacyBlacklists; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 extern const char* kGalleryBrowsePrefix; | 134 extern const char* kGalleryBrowsePrefix; |
| 134 extern const char* kGalleryDownloadPrefix; | 135 extern const char* kGalleryDownloadPrefix; |
| 135 | 136 |
| 136 // Same thing for the "minigallery". The minigallery is the temporary static | 137 // Same thing for the "minigallery". The minigallery is the temporary static |
| 137 // themes gallery that we put up when we launched themes. | 138 // themes gallery that we put up when we launched themes. |
| 138 extern const char* kMiniGalleryBrowsePrefix; | 139 extern const char* kMiniGalleryBrowsePrefix; |
| 139 extern const char* kMiniGalleryDownloadPrefix; | 140 extern const char* kMiniGalleryDownloadPrefix; |
| 140 } // namespace extension_urls | 141 } // namespace extension_urls |
| 141 | 142 |
| 142 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 143 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |