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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 extern const char kPlatformAppNeedsManifestVersion2[]; | 320 extern const char kPlatformAppNeedsManifestVersion2[]; |
319 extern const char kOneUISurfaceOnly[]; | 321 extern const char kOneUISurfaceOnly[]; |
320 extern const char kReservedMessageFound[]; | 322 extern const char kReservedMessageFound[]; |
321 extern const char kWebRequestConflictsWithLazyBackground[]; | 323 extern const char kWebRequestConflictsWithLazyBackground[]; |
322 #if defined(OS_CHROMEOS) | 324 #if defined(OS_CHROMEOS) |
323 extern const char kIllegalPlugins[]; | 325 extern const char kIllegalPlugins[]; |
324 #endif | 326 #endif |
325 } // namespace extension_manifest_errors | 327 } // namespace extension_manifest_errors |
326 | 328 |
327 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 329 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |