| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 extern const char kUsbPrinters[]; | 178 extern const char kUsbPrinters[]; |
| 179 extern const char kVersion[]; | 179 extern const char kVersion[]; |
| 180 extern const char kVersionName[]; | 180 extern const char kVersionName[]; |
| 181 extern const char kWebAccessibleResources[]; | 181 extern const char kWebAccessibleResources[]; |
| 182 extern const char kWebURLs[]; | 182 extern const char kWebURLs[]; |
| 183 extern const char kWebview[]; | 183 extern const char kWebview[]; |
| 184 extern const char kWebviewName[]; | 184 extern const char kWebviewName[]; |
| 185 extern const char kWebviewAccessibleResources[]; | 185 extern const char kWebviewAccessibleResources[]; |
| 186 extern const char kWebviewPartitions[]; | 186 extern const char kWebviewPartitions[]; |
| 187 extern const char kWhitelist[]; | 187 extern const char kWhitelist[]; |
| 188 | 188 #if defined(OS_CHROMEOS) |
| 189 extern const char kFileSystemProvider[]; |
| 190 #endif |
| 189 } // namespace manifest_keys | 191 } // namespace manifest_keys |
| 190 | 192 |
| 191 // Some values expected in manifests. | 193 // Some values expected in manifests. |
| 192 namespace manifest_values { | 194 namespace manifest_values { |
| 193 | 195 |
| 194 extern const char kApiKey[]; | 196 extern const char kApiKey[]; |
| 195 extern const char kBrowserActionCommandEvent[]; | 197 extern const char kBrowserActionCommandEvent[]; |
| 196 extern const char kIncognitoSplit[]; | 198 extern const char kIncognitoSplit[]; |
| 197 extern const char kIncognitoSpanning[]; | 199 extern const char kIncognitoSpanning[]; |
| 198 extern const char kIsolatedStorage[]; | 200 extern const char kIsolatedStorage[]; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 extern const char kWebRequestConflictsWithLazyBackground[]; | 479 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 478 #if defined(OS_CHROMEOS) | 480 #if defined(OS_CHROMEOS) |
| 479 extern const char kIllegalPlugins[]; | 481 extern const char kIllegalPlugins[]; |
| 480 #endif | 482 #endif |
| 481 | 483 |
| 482 } // namespace manifest_errors | 484 } // namespace manifest_errors |
| 483 | 485 |
| 484 } // namespace extensions | 486 } // namespace extensions |
| 485 | 487 |
| 486 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 488 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |