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