| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 #if defined(OS_CHROMEOS) | 188 #if defined(OS_CHROMEOS) |
| 189 extern const char kFileSystemProviderCapabilities[]; | 189 extern const char kFileSystemProviderCapabilities[]; |
| 190 #endif | 190 #endif |
| 191 } // namespace manifest_keys | 191 } // namespace manifest_keys |
| 192 | 192 |
| 193 // Some values expected in manifests. | 193 // Some values expected in manifests. |
| 194 namespace manifest_values { | 194 namespace manifest_values { |
| 195 | 195 |
| 196 extern const char kApiKey[]; | 196 extern const char kApiKey[]; |
| 197 extern const char kBrowserActionCommandEvent[]; | 197 extern const char kBrowserActionCommandEvent[]; |
| 198 extern const char kIncognitoNotAllowed[]; |
| 198 extern const char kIncognitoSplit[]; | 199 extern const char kIncognitoSplit[]; |
| 199 extern const char kIncognitoSpanning[]; | 200 extern const char kIncognitoSpanning[]; |
| 200 extern const char kIsolatedStorage[]; | 201 extern const char kIsolatedStorage[]; |
| 201 extern const char kKeybindingPlatformChromeOs[]; | 202 extern const char kKeybindingPlatformChromeOs[]; |
| 202 extern const char kKeybindingPlatformDefault[]; | 203 extern const char kKeybindingPlatformDefault[]; |
| 203 extern const char kKeybindingPlatformLinux[]; | 204 extern const char kKeybindingPlatformLinux[]; |
| 204 extern const char kKeybindingPlatformMac[]; | 205 extern const char kKeybindingPlatformMac[]; |
| 205 extern const char kKeybindingPlatformWin[]; | 206 extern const char kKeybindingPlatformWin[]; |
| 206 extern const char kKeyAlt[]; | 207 extern const char kKeyAlt[]; |
| 207 extern const char kKeyShift[]; | 208 extern const char kKeyShift[]; |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 extern const char kIllegalPlugins[]; | 483 extern const char kIllegalPlugins[]; |
| 483 extern const char kInvalidFileSystemProviderMissingCapabilities[]; | 484 extern const char kInvalidFileSystemProviderMissingCapabilities[]; |
| 484 extern const char kInvalidFileSystemProviderMissingPermission[]; | 485 extern const char kInvalidFileSystemProviderMissingPermission[]; |
| 485 #endif | 486 #endif |
| 486 | 487 |
| 487 } // namespace manifest_errors | 488 } // namespace manifest_errors |
| 488 | 489 |
| 489 } // namespace extensions | 490 } // namespace extensions |
| 490 | 491 |
| 491 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 492 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |