| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 extern const char kConvertedFromUserScript[]; | 31 extern const char kConvertedFromUserScript[]; |
| 32 extern const char kCss[]; | 32 extern const char kCss[]; |
| 33 extern const char kCtrlKey[]; | 33 extern const char kCtrlKey[]; |
| 34 extern const char kCurrentLocale[]; | 34 extern const char kCurrentLocale[]; |
| 35 extern const char kDefaultLocale[]; | 35 extern const char kDefaultLocale[]; |
| 36 extern const char kDescription[]; | 36 extern const char kDescription[]; |
| 37 extern const char kDevToolsPage[]; | 37 extern const char kDevToolsPage[]; |
| 38 extern const char kEventName[]; | 38 extern const char kEventName[]; |
| 39 extern const char kExcludeGlobs[]; | 39 extern const char kExcludeGlobs[]; |
| 40 extern const char kExcludeMatches[]; | 40 extern const char kExcludeMatches[]; |
| 41 extern const char kFileAccessList[]; |
| 41 extern const char kFileFilters[]; | 42 extern const char kFileFilters[]; |
| 42 extern const char kFileBrowserHandlers[]; | 43 extern const char kFileBrowserHandlers[]; |
| 43 extern const char kHomepageURL[]; | 44 extern const char kHomepageURL[]; |
| 44 extern const char kIcons[]; | 45 extern const char kIcons[]; |
| 45 extern const char kId[]; | 46 extern const char kId[]; |
| 46 extern const char kIncognito[]; | 47 extern const char kIncognito[]; |
| 47 extern const char kIncludeGlobs[]; | 48 extern const char kIncludeGlobs[]; |
| 48 extern const char kInputComponents[]; | 49 extern const char kInputComponents[]; |
| 49 extern const char kIntentDisposition[]; | 50 extern const char kIntentDisposition[]; |
| 50 extern const char kIntentHref[]; | 51 extern const char kIntentHref[]; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 extern const char kInvalidContentScript[]; | 184 extern const char kInvalidContentScript[]; |
| 184 extern const char kInvalidContentScriptsList[]; | 185 extern const char kInvalidContentScriptsList[]; |
| 185 extern const char kInvalidContentSecurityPolicy[]; | 186 extern const char kInvalidContentSecurityPolicy[]; |
| 186 extern const char kInvalidCss[]; | 187 extern const char kInvalidCss[]; |
| 187 extern const char kInvalidCssList[]; | 188 extern const char kInvalidCssList[]; |
| 188 extern const char kInvalidDefaultLocale[]; | 189 extern const char kInvalidDefaultLocale[]; |
| 189 extern const char kInvalidDescription[]; | 190 extern const char kInvalidDescription[]; |
| 190 extern const char kInvalidDevToolsPage[]; | 191 extern const char kInvalidDevToolsPage[]; |
| 191 extern const char kInvalidExcludeMatch[]; | 192 extern const char kInvalidExcludeMatch[]; |
| 192 extern const char kInvalidExcludeMatches[]; | 193 extern const char kInvalidExcludeMatches[]; |
| 194 extern const char kInvalidFileAccessList[]; |
| 195 extern const char kInvalidFileAccessValue[]; |
| 193 extern const char kInvalidFileBrowserHandler[]; | 196 extern const char kInvalidFileBrowserHandler[]; |
| 194 extern const char kInvalidFileFiltersList[]; | 197 extern const char kInvalidFileFiltersList[]; |
| 195 extern const char kInvalidFileFilterValue[]; | 198 extern const char kInvalidFileFilterValue[]; |
| 196 extern const char kInvalidGlob[]; | 199 extern const char kInvalidGlob[]; |
| 197 extern const char kInvalidGlobList[]; | 200 extern const char kInvalidGlobList[]; |
| 198 extern const char kInvalidHomepageURL[]; | 201 extern const char kInvalidHomepageURL[]; |
| 199 extern const char kInvalidIconPath[]; | 202 extern const char kInvalidIconPath[]; |
| 200 extern const char kInvalidIcons[]; | 203 extern const char kInvalidIcons[]; |
| 201 extern const char kInvalidIncognitoBehavior[]; | 204 extern const char kInvalidIncognitoBehavior[]; |
| 202 extern const char kInvalidInputComponents[]; | 205 extern const char kInvalidInputComponents[]; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 extern const char kPlatformAppFlagRequired[]; | 308 extern const char kPlatformAppFlagRequired[]; |
| 306 extern const char kOneUISurfaceOnly[]; | 309 extern const char kOneUISurfaceOnly[]; |
| 307 extern const char kReservedMessageFound[]; | 310 extern const char kReservedMessageFound[]; |
| 308 extern const char kWebContentMustBeEnabled[]; | 311 extern const char kWebContentMustBeEnabled[]; |
| 309 #if defined(OS_CHROMEOS) | 312 #if defined(OS_CHROMEOS) |
| 310 extern const char kIllegalPlugins[]; | 313 extern const char kIllegalPlugins[]; |
| 311 #endif | 314 #endif |
| 312 } // namespace extension_manifest_errors | 315 } // namespace extension_manifest_errors |
| 313 | 316 |
| 314 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 317 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |