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* kAllFrames; | 10 extern const wchar_t* kAllFrames; |
11 extern const wchar_t* kBackground; | 11 extern const wchar_t* kBackground; |
12 extern const wchar_t* kBrowserAction; | 12 extern const wchar_t* kBrowserAction; |
13 extern const wchar_t* kMinimumChromeVersion; | 13 extern const wchar_t* kMinimumChromeVersion; |
14 extern const wchar_t* kChromeURLOverrides; | 14 extern const wchar_t* kChromeURLOverrides; |
15 extern const wchar_t* kContentScripts; | 15 extern const wchar_t* kContentScripts; |
16 extern const wchar_t* kConvertedFromUserScript; | 16 extern const wchar_t* kConvertedFromUserScript; |
17 extern const wchar_t* kCss; | 17 extern const wchar_t* kCss; |
18 extern const wchar_t* kCurrentLocale; | 18 extern const wchar_t* kCurrentLocale; |
19 extern const wchar_t* kDefaultLocale; | 19 extern const wchar_t* kDefaultLocale; |
20 extern const wchar_t* kDescription; | 20 extern const wchar_t* kDescription; |
21 extern const wchar_t* kExcludeGlobs; | 21 extern const wchar_t* kExcludeGlobs; |
22 extern const wchar_t* kIcons; | 22 extern const wchar_t* kIcons; |
23 extern const wchar_t* kIncludeGlobs; | 23 extern const wchar_t* kIncludeGlobs; |
24 extern const wchar_t* kLaunch; | 24 extern const wchar_t* kLaunch; |
25 extern const wchar_t* kLaunchContainer; | 25 extern const wchar_t* kLaunchContainer; |
| 26 extern const wchar_t* kLaunchFullscreen; |
26 extern const wchar_t* kLaunchLocalPath; | 27 extern const wchar_t* kLaunchLocalPath; |
27 extern const wchar_t* kLaunchWebURL; | 28 extern const wchar_t* kLaunchWebURL; |
28 extern const wchar_t* kJs; | 29 extern const wchar_t* kJs; |
29 extern const wchar_t* kMatches; | 30 extern const wchar_t* kMatches; |
30 extern const wchar_t* kName; | 31 extern const wchar_t* kName; |
31 extern const wchar_t* kPageActionId; | 32 extern const wchar_t* kPageActionId; |
32 extern const wchar_t* kPageAction; | 33 extern const wchar_t* kPageAction; |
33 extern const wchar_t* kPageActions; | 34 extern const wchar_t* kPageActions; |
34 extern const wchar_t* kPageActionIcons; | 35 extern const wchar_t* kPageActionIcons; |
35 extern const wchar_t* kPageActionDefaultIcon; | 36 extern const wchar_t* kPageActionDefaultIcon; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 extern const char* kInvalidCssList; | 92 extern const char* kInvalidCssList; |
92 extern const char* kInvalidDescription; | 93 extern const char* kInvalidDescription; |
93 extern const char* kInvalidIcons; | 94 extern const char* kInvalidIcons; |
94 extern const char* kInvalidIconPath; | 95 extern const char* kInvalidIconPath; |
95 extern const char* kInvalidGlobList; | 96 extern const char* kInvalidGlobList; |
96 extern const char* kInvalidGlob; | 97 extern const char* kInvalidGlob; |
97 extern const char* kInvalidJs; | 98 extern const char* kInvalidJs; |
98 extern const char* kInvalidJsList; | 99 extern const char* kInvalidJsList; |
99 extern const char* kInvalidKey; | 100 extern const char* kInvalidKey; |
100 extern const char* kInvalidLaunchContainer; | 101 extern const char* kInvalidLaunchContainer; |
| 102 extern const char* kInvalidLaunchFullscreen; |
101 extern const char* kInvalidLaunchLocalPath; | 103 extern const char* kInvalidLaunchLocalPath; |
102 extern const char* kInvalidLaunchWebURL; | 104 extern const char* kInvalidLaunchWebURL; |
103 extern const char* kInvalidManifest; | 105 extern const char* kInvalidManifest; |
104 extern const char* kInvalidMatchCount; | 106 extern const char* kInvalidMatchCount; |
105 extern const char* kInvalidMatch; | 107 extern const char* kInvalidMatch; |
106 extern const char* kInvalidMatches; | 108 extern const char* kInvalidMatches; |
107 extern const char* kInvalidMinimumChromeVersion; | 109 extern const char* kInvalidMinimumChromeVersion; |
108 extern const char* kInvalidName; | 110 extern const char* kInvalidName; |
109 extern const char* kInvalidPlugins; | 111 extern const char* kInvalidPlugins; |
110 extern const char* kInvalidPluginsPath; | 112 extern const char* kInvalidPluginsPath; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 extern const char* kGalleryBrowsePrefix; | 169 extern const char* kGalleryBrowsePrefix; |
168 extern const char* kGalleryDownloadPrefix; | 170 extern const char* kGalleryDownloadPrefix; |
169 | 171 |
170 // Same thing for the "minigallery". The minigallery is the temporary static | 172 // Same thing for the "minigallery". The minigallery is the temporary static |
171 // themes gallery that we put up when we launched themes. | 173 // themes gallery that we put up when we launched themes. |
172 extern const char* kMiniGalleryBrowsePrefix; | 174 extern const char* kMiniGalleryBrowsePrefix; |
173 extern const char* kMiniGalleryDownloadPrefix; | 175 extern const char* kMiniGalleryDownloadPrefix; |
174 } // namespace extension_urls | 176 } // namespace extension_urls |
175 | 177 |
176 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 178 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |