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 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 extern const char kOAuth2[]; | 77 extern const char kOAuth2[]; |
78 extern const char kOAuth2ClientId[]; | 78 extern const char kOAuth2ClientId[]; |
79 extern const char kOAuth2Scopes[]; | 79 extern const char kOAuth2Scopes[]; |
80 extern const char kOfflineEnabled[]; | 80 extern const char kOfflineEnabled[]; |
81 extern const char kOmnibox[]; | 81 extern const char kOmnibox[]; |
82 extern const char kOmniboxKeyword[]; | 82 extern const char kOmniboxKeyword[]; |
83 extern const char kOptionalPermissions[]; | 83 extern const char kOptionalPermissions[]; |
84 extern const char kOptionsPage[]; | 84 extern const char kOptionsPage[]; |
85 extern const char kPageAction[]; | 85 extern const char kPageAction[]; |
86 extern const char kPageActionDefaultIcon[]; | 86 extern const char kPageActionDefaultIcon[]; |
| 87 extern const char kPageActionDefaultIconSet[]; |
87 extern const char kPageActionDefaultPopup[]; | 88 extern const char kPageActionDefaultPopup[]; |
88 extern const char kPageActionDefaultTitle[]; | 89 extern const char kPageActionDefaultTitle[]; |
89 extern const char kPageActionIcons[]; | 90 extern const char kPageActionIcons[]; |
90 extern const char kPageActionId[]; | 91 extern const char kPageActionId[]; |
91 extern const char kPageActionPopup[]; | 92 extern const char kPageActionPopup[]; |
92 extern const char kPageActionPopupPath[]; | 93 extern const char kPageActionPopupPath[]; |
93 extern const char kPageActions[]; | 94 extern const char kPageActions[]; |
94 extern const char kPermissions[]; | 95 extern const char kPermissions[]; |
95 extern const char kPlatformAppBackground[]; | 96 extern const char kPlatformAppBackground[]; |
96 extern const char kPlatformAppBackgroundPage[]; | 97 extern const char kPlatformAppBackgroundPage[]; |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 extern const char kScriptBadgeRequiresFlag[]; | 327 extern const char kScriptBadgeRequiresFlag[]; |
327 extern const char kScriptBadgeIconIgnored[]; | 328 extern const char kScriptBadgeIconIgnored[]; |
328 extern const char kScriptBadgeTitleIgnored[]; | 329 extern const char kScriptBadgeTitleIgnored[]; |
329 extern const char kWebRequestConflictsWithLazyBackground[]; | 330 extern const char kWebRequestConflictsWithLazyBackground[]; |
330 #if defined(OS_CHROMEOS) | 331 #if defined(OS_CHROMEOS) |
331 extern const char kIllegalPlugins[]; | 332 extern const char kIllegalPlugins[]; |
332 #endif | 333 #endif |
333 } // namespace extension_manifest_errors | 334 } // namespace extension_manifest_errors |
334 | 335 |
335 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 336 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |