| 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 15 matching lines...) Expand all Loading... |
| 26 extern const char kCommands[]; | 26 extern const char kCommands[]; |
| 27 extern const char kContentScripts[]; | 27 extern const char kContentScripts[]; |
| 28 extern const char kContentSecurityPolicy[]; | 28 extern const char kContentSecurityPolicy[]; |
| 29 extern const char kConvertedFromUserScript[]; | 29 extern const char kConvertedFromUserScript[]; |
| 30 extern const char kCss[]; | 30 extern const char kCss[]; |
| 31 extern const char kCtrlKey[]; | 31 extern const char kCtrlKey[]; |
| 32 extern const char kCurrentLocale[]; | 32 extern const char kCurrentLocale[]; |
| 33 extern const char kDefaultLocale[]; | 33 extern const char kDefaultLocale[]; |
| 34 extern const char kDescription[]; | 34 extern const char kDescription[]; |
| 35 extern const char kDevToolsPage[]; | 35 extern const char kDevToolsPage[]; |
| 36 extern const char kDisplayInLauncher[]; |
| 36 extern const char kEventName[]; | 37 extern const char kEventName[]; |
| 37 extern const char kExcludeGlobs[]; | 38 extern const char kExcludeGlobs[]; |
| 38 extern const char kExcludeMatches[]; | 39 extern const char kExcludeMatches[]; |
| 39 extern const char kFileAccessList[]; | 40 extern const char kFileAccessList[]; |
| 40 extern const char kFileFilters[]; | 41 extern const char kFileFilters[]; |
| 41 extern const char kFileBrowserHandlers[]; | 42 extern const char kFileBrowserHandlers[]; |
| 42 extern const char kHomepageURL[]; | 43 extern const char kHomepageURL[]; |
| 43 extern const char kIcons[]; | 44 extern const char kIcons[]; |
| 44 extern const char kId[]; | 45 extern const char kId[]; |
| 45 extern const char kIncognito[]; | 46 extern const char kIncognito[]; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 extern const char kInvalidChromeURLOverrides[]; | 191 extern const char kInvalidChromeURLOverrides[]; |
| 191 extern const char kInvalidCommandsKey[]; | 192 extern const char kInvalidCommandsKey[]; |
| 192 extern const char kInvalidContentScript[]; | 193 extern const char kInvalidContentScript[]; |
| 193 extern const char kInvalidContentScriptsList[]; | 194 extern const char kInvalidContentScriptsList[]; |
| 194 extern const char kInvalidContentSecurityPolicy[]; | 195 extern const char kInvalidContentSecurityPolicy[]; |
| 195 extern const char kInvalidCss[]; | 196 extern const char kInvalidCss[]; |
| 196 extern const char kInvalidCssList[]; | 197 extern const char kInvalidCssList[]; |
| 197 extern const char kInvalidDefaultLocale[]; | 198 extern const char kInvalidDefaultLocale[]; |
| 198 extern const char kInvalidDescription[]; | 199 extern const char kInvalidDescription[]; |
| 199 extern const char kInvalidDevToolsPage[]; | 200 extern const char kInvalidDevToolsPage[]; |
| 201 extern const char kInvalidDisplayInLauncher[]; |
| 200 extern const char kInvalidExcludeMatch[]; | 202 extern const char kInvalidExcludeMatch[]; |
| 201 extern const char kInvalidExcludeMatches[]; | 203 extern const char kInvalidExcludeMatches[]; |
| 202 extern const char kInvalidFileAccessList[]; | 204 extern const char kInvalidFileAccessList[]; |
| 203 extern const char kInvalidFileAccessValue[]; | 205 extern const char kInvalidFileAccessValue[]; |
| 204 extern const char kInvalidFileBrowserHandler[]; | 206 extern const char kInvalidFileBrowserHandler[]; |
| 205 extern const char kInvalidFileFiltersList[]; | 207 extern const char kInvalidFileFiltersList[]; |
| 206 extern const char kInvalidFileFilterValue[]; | 208 extern const char kInvalidFileFilterValue[]; |
| 207 extern const char kInvalidGlob[]; | 209 extern const char kInvalidGlob[]; |
| 208 extern const char kInvalidGlobList[]; | 210 extern const char kInvalidGlobList[]; |
| 209 extern const char kInvalidHomepageURL[]; | 211 extern const char kInvalidHomepageURL[]; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 extern const char kScriptBadgeRequiresFlag[]; | 330 extern const char kScriptBadgeRequiresFlag[]; |
| 329 extern const char kScriptBadgeIconIgnored[]; | 331 extern const char kScriptBadgeIconIgnored[]; |
| 330 extern const char kScriptBadgeTitleIgnored[]; | 332 extern const char kScriptBadgeTitleIgnored[]; |
| 331 extern const char kWebRequestConflictsWithLazyBackground[]; | 333 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 332 #if defined(OS_CHROMEOS) | 334 #if defined(OS_CHROMEOS) |
| 333 extern const char kIllegalPlugins[]; | 335 extern const char kIllegalPlugins[]; |
| 334 #endif | 336 #endif |
| 335 } // namespace extension_manifest_errors | 337 } // namespace extension_manifest_errors |
| 336 | 338 |
| 337 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 339 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |