OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 extern const char kPageAction[]; | 86 extern const char kPageAction[]; |
87 extern const char kPageActionDefaultIcon[]; | 87 extern const char kPageActionDefaultIcon[]; |
88 extern const char kPageActionDefaultPopup[]; | 88 extern const char kPageActionDefaultPopup[]; |
89 extern const char kPageActionDefaultTitle[]; | 89 extern const char kPageActionDefaultTitle[]; |
90 extern const char kPageActionIcons[]; | 90 extern const char kPageActionIcons[]; |
91 extern const char kPageActionId[]; | 91 extern const char kPageActionId[]; |
92 extern const char kPageActionPopup[]; | 92 extern const char kPageActionPopup[]; |
93 extern const char kPageActionPopupPath[]; | 93 extern const char kPageActionPopupPath[]; |
94 extern const char kPageActions[]; | 94 extern const char kPageActions[]; |
95 extern const char kPermissions[]; | 95 extern const char kPermissions[]; |
96 extern const char kPlatformApp[]; | 96 extern const char kPlatformAppBackground[]; |
| 97 extern const char kPlatformAppBackgroundPage[]; |
| 98 extern const char kPlatformAppBackgroundScripts[]; |
97 extern const char kPlugins[]; | 99 extern const char kPlugins[]; |
98 extern const char kPluginsPath[]; | 100 extern const char kPluginsPath[]; |
99 extern const char kPluginsPublic[]; | 101 extern const char kPluginsPublic[]; |
100 extern const char kPublicKey[]; | 102 extern const char kPublicKey[]; |
101 extern const char kRequirements[]; | 103 extern const char kRequirements[]; |
102 extern const char kRunAt[]; | 104 extern const char kRunAt[]; |
103 extern const char kSandboxedPages[]; | 105 extern const char kSandboxedPages[]; |
104 extern const char kSandboxedPagesCSP[]; | 106 extern const char kSandboxedPagesCSP[]; |
105 extern const char kShiftKey[]; | 107 extern const char kShiftKey[]; |
106 extern const char kShortcutKey[]; | 108 extern const char kShortcutKey[]; |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 extern const char kLocalesNoDefaultMessages[]; | 310 extern const char kLocalesNoDefaultMessages[]; |
309 extern const char kLocalesNoValidLocaleNamesListed[]; | 311 extern const char kLocalesNoValidLocaleNamesListed[]; |
310 extern const char kLocalesTreeMissing[]; | 312 extern const char kLocalesTreeMissing[]; |
311 extern const char kManifestParseError[]; | 313 extern const char kManifestParseError[]; |
312 extern const char kManifestUnreadable[]; | 314 extern const char kManifestUnreadable[]; |
313 extern const char kMissingFile[]; | 315 extern const char kMissingFile[]; |
314 extern const char kMultipleOverrides[]; | 316 extern const char kMultipleOverrides[]; |
315 extern const char kNoWildCardsInPaths[]; | 317 extern const char kNoWildCardsInPaths[]; |
316 extern const char kPermissionNotAllowed[]; | 318 extern const char kPermissionNotAllowed[]; |
317 extern const char kPlatformAppFlagRequired[]; | 319 extern const char kPlatformAppFlagRequired[]; |
| 320 extern const char kPlatformAppInvalidBackgroundPage[]; |
| 321 extern const char kPlatformAppInvalidBackgroundScripts[]; |
318 extern const char kPlatformAppNeedsManifestVersion2[]; | 322 extern const char kPlatformAppNeedsManifestVersion2[]; |
319 extern const char kOneUISurfaceOnly[]; | 323 extern const char kOneUISurfaceOnly[]; |
320 extern const char kReservedMessageFound[]; | 324 extern const char kReservedMessageFound[]; |
321 extern const char kWebRequestConflictsWithLazyBackground[]; | 325 extern const char kWebRequestConflictsWithLazyBackground[]; |
322 #if defined(OS_CHROMEOS) | 326 #if defined(OS_CHROMEOS) |
323 extern const char kIllegalPlugins[]; | 327 extern const char kIllegalPlugins[]; |
324 #endif | 328 #endif |
325 } // namespace extension_manifest_errors | 329 } // namespace extension_manifest_errors |
326 | 330 |
327 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 331 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |