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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 extern const char kLayouts[]; | 76 extern const char kLayouts[]; |
77 extern const char kManifestVersion[]; | 77 extern const char kManifestVersion[]; |
78 extern const char kMatches[]; | 78 extern const char kMatches[]; |
79 extern const char kMIMETypes[]; | 79 extern const char kMIMETypes[]; |
80 extern const char kMinimumChromeVersion[]; | 80 extern const char kMinimumChromeVersion[]; |
81 extern const char kNaClModules[]; | 81 extern const char kNaClModules[]; |
82 extern const char kNaClModulesMIMEType[]; | 82 extern const char kNaClModulesMIMEType[]; |
83 extern const char kNaClModulesPath[]; | 83 extern const char kNaClModulesPath[]; |
84 extern const char kName[]; | 84 extern const char kName[]; |
85 extern const char kOAuth2[]; | 85 extern const char kOAuth2[]; |
86 extern const char kOAuth2ClientId[]; | |
87 extern const char kOAuth2Scopes[]; | |
88 extern const char kOfflineEnabled[]; | 86 extern const char kOfflineEnabled[]; |
89 extern const char kOmnibox[]; | 87 extern const char kOmnibox[]; |
90 extern const char kOmniboxKeyword[]; | 88 extern const char kOmniboxKeyword[]; |
91 extern const char kOptionalPermissions[]; | 89 extern const char kOptionalPermissions[]; |
92 extern const char kOptionsPage[]; | 90 extern const char kOptionsPage[]; |
93 extern const char kPageAction[]; | 91 extern const char kPageAction[]; |
94 extern const char kPageActionDefaultIcon[]; | 92 extern const char kPageActionDefaultIcon[]; |
95 extern const char kPageActionDefaultPopup[]; | 93 extern const char kPageActionDefaultPopup[]; |
96 extern const char kPageActionDefaultTitle[]; | 94 extern const char kPageActionDefaultTitle[]; |
97 extern const char kPageActionIcons[]; | 95 extern const char kPageActionIcons[]; |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 extern const char kScriptBadgeRequiresFlag[]; | 350 extern const char kScriptBadgeRequiresFlag[]; |
353 extern const char kScriptBadgeIconIgnored[]; | 351 extern const char kScriptBadgeIconIgnored[]; |
354 extern const char kScriptBadgeTitleIgnored[]; | 352 extern const char kScriptBadgeTitleIgnored[]; |
355 extern const char kWebRequestConflictsWithLazyBackground[]; | 353 extern const char kWebRequestConflictsWithLazyBackground[]; |
356 #if defined(OS_CHROMEOS) | 354 #if defined(OS_CHROMEOS) |
357 extern const char kIllegalPlugins[]; | 355 extern const char kIllegalPlugins[]; |
358 #endif | 356 #endif |
359 } // namespace extension_manifest_errors | 357 } // namespace extension_manifest_errors |
360 | 358 |
361 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 359 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |