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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 extern const char kOptionsUI[]; | 109 extern const char kOptionsUI[]; |
110 extern const char kOverrideHomepage[]; | 110 extern const char kOverrideHomepage[]; |
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 kPageActionOpenInSidebar[]; |
119 extern const char kPageActionPopup[]; | 120 extern const char kPageActionPopup[]; |
120 extern const char kPageActionPopupPath[]; | 121 extern const char kPageActionPopupPath[]; |
121 extern const char kPermissions[]; | 122 extern const char kPermissions[]; |
122 extern const char kPlatformAppBackground[]; | 123 extern const char kPlatformAppBackground[]; |
123 extern const char kPlatformAppBackgroundPage[]; | 124 extern const char kPlatformAppBackgroundPage[]; |
124 extern const char kPlatformAppBackgroundScripts[]; | 125 extern const char kPlatformAppBackgroundScripts[]; |
125 extern const char kPlatformAppContentSecurityPolicy[]; | 126 extern const char kPlatformAppContentSecurityPolicy[]; |
126 extern const char kPlatforms[]; | 127 extern const char kPlatforms[]; |
127 extern const char kPlugins[]; | 128 extern const char kPlugins[]; |
128 extern const char kPluginsPath[]; | 129 extern const char kPluginsPath[]; |
(...skipping 352 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 |