| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 extern const char kOverrideSearchProvider[]; | 111 extern const char kOverrideSearchProvider[]; |
| 112 extern const char kOverrideStartupPage[]; | 112 extern const char kOverrideStartupPage[]; |
| 113 extern const char kPageAction[]; | 113 extern const char kPageAction[]; |
| 114 extern const char kPageActionDefaultIcon[]; | 114 extern const char kPageActionDefaultIcon[]; |
| 115 extern const char kPageActionDefaultPopup[]; | 115 extern const char kPageActionDefaultPopup[]; |
| 116 extern const char kPageActionDefaultTitle[]; | 116 extern const char kPageActionDefaultTitle[]; |
| 117 extern const char kPageActionIcons[]; | 117 extern const char kPageActionIcons[]; |
| 118 extern const char kPageActionId[]; | 118 extern const char kPageActionId[]; |
| 119 extern const char kPageActionPopup[]; | 119 extern const char kPageActionPopup[]; |
| 120 extern const char kPageActionPopupPath[]; | 120 extern const char kPageActionPopupPath[]; |
| 121 extern const char kPageActions[]; | |
| 122 extern const char kPermissions[]; | 121 extern const char kPermissions[]; |
| 123 extern const char kPlatformAppBackground[]; | 122 extern const char kPlatformAppBackground[]; |
| 124 extern const char kPlatformAppBackgroundPage[]; | 123 extern const char kPlatformAppBackgroundPage[]; |
| 125 extern const char kPlatformAppBackgroundScripts[]; | 124 extern const char kPlatformAppBackgroundScripts[]; |
| 126 extern const char kPlatformAppContentSecurityPolicy[]; | 125 extern const char kPlatformAppContentSecurityPolicy[]; |
| 127 extern const char kPlatforms[]; | 126 extern const char kPlatforms[]; |
| 128 extern const char kPlugins[]; | 127 extern const char kPlugins[]; |
| 129 extern const char kPluginsPath[]; | 128 extern const char kPluginsPath[]; |
| 130 extern const char kPluginsPublic[]; | 129 extern const char kPluginsPublic[]; |
| 131 extern const char kPublicKey[]; | 130 extern const char kPublicKey[]; |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 extern const char kInvalidOptionsPageInHostedApp[]; | 388 extern const char kInvalidOptionsPageInHostedApp[]; |
| 390 extern const char kInvalidPageAction[]; | 389 extern const char kInvalidPageAction[]; |
| 391 extern const char kInvalidPageActionDefaultTitle[]; | 390 extern const char kInvalidPageActionDefaultTitle[]; |
| 392 extern const char kInvalidPageActionIconPath[]; | 391 extern const char kInvalidPageActionIconPath[]; |
| 393 extern const char kInvalidPageActionId[]; | 392 extern const char kInvalidPageActionId[]; |
| 394 extern const char kInvalidPageActionName[]; | 393 extern const char kInvalidPageActionName[]; |
| 395 extern const char kInvalidPageActionOldAndNewKeys[]; | 394 extern const char kInvalidPageActionOldAndNewKeys[]; |
| 396 extern const char kInvalidPageActionPopup[]; | 395 extern const char kInvalidPageActionPopup[]; |
| 397 extern const char kInvalidPageActionPopupHeight[]; | 396 extern const char kInvalidPageActionPopupHeight[]; |
| 398 extern const char kInvalidPageActionPopupPath[]; | 397 extern const char kInvalidPageActionPopupPath[]; |
| 399 extern const char kInvalidPageActionsList[]; | |
| 400 extern const char kInvalidPageActionsListSize[]; | |
| 401 extern const char kInvalidPageActionTypeValue[]; | |
| 402 extern const char kInvalidPermissionWithDetail[]; | 398 extern const char kInvalidPermissionWithDetail[]; |
| 403 extern const char kInvalidPermission[]; | 399 extern const char kInvalidPermission[]; |
| 404 extern const char kInvalidPermissions[]; | 400 extern const char kInvalidPermissions[]; |
| 405 extern const char kInvalidPermissionScheme[]; | 401 extern const char kInvalidPermissionScheme[]; |
| 406 extern const char kInvalidPlugins[]; | 402 extern const char kInvalidPlugins[]; |
| 407 extern const char kInvalidPluginsPath[]; | 403 extern const char kInvalidPluginsPath[]; |
| 408 extern const char kInvalidPluginsPublic[]; | 404 extern const char kInvalidPluginsPublic[]; |
| 409 extern const char kInvalidRequirement[]; | 405 extern const char kInvalidRequirement[]; |
| 410 extern const char kInvalidRequirements[]; | 406 extern const char kInvalidRequirements[]; |
| 411 extern const char kInvalidRunAt[]; | 407 extern const char kInvalidRunAt[]; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 extern const char kWebRequestConflictsWithLazyBackground[]; | 482 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 487 #if defined(OS_CHROMEOS) | 483 #if defined(OS_CHROMEOS) |
| 488 extern const char kIllegalPlugins[]; | 484 extern const char kIllegalPlugins[]; |
| 489 #endif | 485 #endif |
| 490 | 486 |
| 491 } // namespace manifest_errors | 487 } // namespace manifest_errors |
| 492 | 488 |
| 493 } // namespace extensions | 489 } // namespace extensions |
| 494 | 490 |
| 495 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 491 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |