| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 | 9 |
| 10 // Keys used in JSON representation of extensions. | 10 // Keys used in JSON representation of extensions. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 extern const char kDefaultLocale[]; | 40 extern const char kDefaultLocale[]; |
| 41 extern const char kDescription[]; | 41 extern const char kDescription[]; |
| 42 extern const char kDevToolsPage[]; | 42 extern const char kDevToolsPage[]; |
| 43 extern const char kDisplayInLauncher[]; | 43 extern const char kDisplayInLauncher[]; |
| 44 extern const char kDisplayInNewTabPage[]; | 44 extern const char kDisplayInNewTabPage[]; |
| 45 extern const char kEventName[]; | 45 extern const char kEventName[]; |
| 46 extern const char kExcludeGlobs[]; | 46 extern const char kExcludeGlobs[]; |
| 47 extern const char kExcludeMatches[]; | 47 extern const char kExcludeMatches[]; |
| 48 extern const char kExport[]; | 48 extern const char kExport[]; |
| 49 extern const char kExternallyConnectable[]; | 49 extern const char kExternallyConnectable[]; |
| 50 extern const char kEventRules[]; |
| 50 extern const char kFileAccessList[]; | 51 extern const char kFileAccessList[]; |
| 51 extern const char kFileHandlers[]; | 52 extern const char kFileHandlers[]; |
| 52 extern const char kFileHandlerExtensions[]; | 53 extern const char kFileHandlerExtensions[]; |
| 53 extern const char kFileHandlerTypes[]; | 54 extern const char kFileHandlerTypes[]; |
| 54 extern const char kFileFilters[]; | 55 extern const char kFileFilters[]; |
| 55 extern const char kFileBrowserHandlers[]; | 56 extern const char kFileBrowserHandlers[]; |
| 56 extern const char kGlobal[]; | 57 extern const char kGlobal[]; |
| 57 extern const char kHideBookmarkButton[]; | 58 extern const char kHideBookmarkButton[]; |
| 58 extern const char kHomepageURL[]; | 59 extern const char kHomepageURL[]; |
| 59 extern const char kIcons[]; | 60 extern const char kIcons[]; |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 extern const char kIllegalPlugins[]; | 482 extern const char kIllegalPlugins[]; |
| 482 extern const char kInvalidFileSystemProviderMissingCapabilities[]; | 483 extern const char kInvalidFileSystemProviderMissingCapabilities[]; |
| 483 extern const char kInvalidFileSystemProviderMissingPermission[]; | 484 extern const char kInvalidFileSystemProviderMissingPermission[]; |
| 484 #endif | 485 #endif |
| 485 | 486 |
| 486 } // namespace manifest_errors | 487 } // namespace manifest_errors |
| 487 | 488 |
| 488 } // namespace extensions | 489 } // namespace extensions |
| 489 | 490 |
| 490 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 491 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |