| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 extern const char kIsolation[]; | 61 extern const char kIsolation[]; |
| 62 extern const char kJs[]; | 62 extern const char kJs[]; |
| 63 extern const char kKey[]; | 63 extern const char kKey[]; |
| 64 extern const char kKeycode[]; | 64 extern const char kKeycode[]; |
| 65 extern const char kKioskEnabled[]; | 65 extern const char kKioskEnabled[]; |
| 66 extern const char kLanguage[]; | 66 extern const char kLanguage[]; |
| 67 extern const char kLaunch[]; | 67 extern const char kLaunch[]; |
| 68 extern const char kLaunchContainer[]; | 68 extern const char kLaunchContainer[]; |
| 69 extern const char kLaunchHeight[]; | 69 extern const char kLaunchHeight[]; |
| 70 extern const char kLaunchLocalPath[]; | 70 extern const char kLaunchLocalPath[]; |
| 71 extern const char kLaunchMaxHeight[]; | |
| 72 extern const char kLaunchMaxWidth[]; | |
| 73 extern const char kLaunchMinHeight[]; | |
| 74 extern const char kLaunchMinWidth[]; | |
| 75 extern const char kLaunchWebURL[]; | 71 extern const char kLaunchWebURL[]; |
| 76 extern const char kLaunchWidth[]; | 72 extern const char kLaunchWidth[]; |
| 77 extern const char kLayouts[]; | 73 extern const char kLayouts[]; |
| 78 extern const char kManifestVersion[]; | 74 extern const char kManifestVersion[]; |
| 79 extern const char kMatches[]; | 75 extern const char kMatches[]; |
| 80 extern const char kMIMETypes[]; | 76 extern const char kMIMETypes[]; |
| 81 extern const char kMimeTypesHandler[]; | 77 extern const char kMimeTypesHandler[]; |
| 82 extern const char kMinimumChromeVersion[]; | 78 extern const char kMinimumChromeVersion[]; |
| 83 extern const char kNaClModules[]; | 79 extern const char kNaClModules[]; |
| 84 extern const char kNaClModulesMIMEType[]; | 80 extern const char kNaClModulesMIMEType[]; |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 extern const char kScriptBadgeRequiresFlag[]; | 355 extern const char kScriptBadgeRequiresFlag[]; |
| 360 extern const char kScriptBadgeIconIgnored[]; | 356 extern const char kScriptBadgeIconIgnored[]; |
| 361 extern const char kScriptBadgeTitleIgnored[]; | 357 extern const char kScriptBadgeTitleIgnored[]; |
| 362 extern const char kWebRequestConflictsWithLazyBackground[]; | 358 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 363 #if defined(OS_CHROMEOS) | 359 #if defined(OS_CHROMEOS) |
| 364 extern const char kIllegalPlugins[]; | 360 extern const char kIllegalPlugins[]; |
| 365 #endif | 361 #endif |
| 366 } // namespace extension_manifest_errors | 362 } // namespace extension_manifest_errors |
| 367 | 363 |
| 368 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 364 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |