| 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. |
| 11 namespace manifest_keys { | 11 namespace manifest_keys { |
| 12 | 12 |
| 13 extern const char kAllFrames[]; | 13 extern const char kAllFrames[]; |
| 14 extern const char kAltKey[]; | 14 extern const char kAltKey[]; |
| 15 extern const char kApp[]; | 15 extern const char kApp[]; |
| 16 extern const char kBackgroundAllowJsAccess[]; | 16 extern const char kBackgroundAllowJsAccess[]; |
| 17 extern const char kBackgroundPage[]; | 17 extern const char kBackgroundPage[]; |
| 18 extern const char kBackgroundPageLegacy[]; | 18 extern const char kBackgroundPageLegacy[]; |
| 19 extern const char kBackgroundPersistent[]; | 19 extern const char kBackgroundPersistent[]; |
| 20 extern const char kBackgroundScripts[]; | 20 extern const char kBackgroundScripts[]; |
| 21 extern const char kBluetooth[]; |
| 21 extern const char kBookmarkUI[]; | 22 extern const char kBookmarkUI[]; |
| 22 extern const char kBrowserAction[]; | 23 extern const char kBrowserAction[]; |
| 23 extern const char kBrowseURLs[]; | 24 extern const char kBrowseURLs[]; |
| 24 extern const char kChromeURLOverrides[]; | 25 extern const char kChromeURLOverrides[]; |
| 25 extern const char kCommands[]; | 26 extern const char kCommands[]; |
| 26 extern const char kContentPack[]; | 27 extern const char kContentPack[]; |
| 27 extern const char kContentPackSites[]; | 28 extern const char kContentPackSites[]; |
| 28 extern const char kContentScripts[]; | 29 extern const char kContentScripts[]; |
| 29 extern const char kContentSecurityPolicy[]; | 30 extern const char kContentSecurityPolicy[]; |
| 30 extern const char kConvertedFromUserScript[]; | 31 extern const char kConvertedFromUserScript[]; |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 extern const char kWebRequestConflictsWithLazyBackground[]; | 455 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 455 #if defined(OS_CHROMEOS) | 456 #if defined(OS_CHROMEOS) |
| 456 extern const char kIllegalPlugins[]; | 457 extern const char kIllegalPlugins[]; |
| 457 #endif | 458 #endif |
| 458 | 459 |
| 459 } // namespace manifest_errors | 460 } // namespace manifest_errors |
| 460 | 461 |
| 461 } // namespace extensions | 462 } // namespace extensions |
| 462 | 463 |
| 463 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 464 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |