OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
7 | 7 |
8 namespace extensions { | 8 namespace extensions { |
9 | 9 |
10 // Keys used in JSON representation of extensions. | 10 // Keys used in JSON representation of extensions. |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 extern const char kIsolation[]; | 70 extern const char kIsolation[]; |
71 extern const char kJs[]; | 71 extern const char kJs[]; |
72 extern const char kKey[]; | 72 extern const char kKey[]; |
73 extern const char kKeycode[]; | 73 extern const char kKeycode[]; |
74 extern const char kKioskEnabled[]; | 74 extern const char kKioskEnabled[]; |
75 extern const char kKioskOnly[]; | 75 extern const char kKioskOnly[]; |
76 extern const char kKioskMode[]; | 76 extern const char kKioskMode[]; |
77 extern const char kLanguage[]; | 77 extern const char kLanguage[]; |
78 extern const char kLaunch[]; | 78 extern const char kLaunch[]; |
79 extern const char kLaunchContainer[]; | 79 extern const char kLaunchContainer[]; |
| 80 extern const char kLauncherPage[]; |
| 81 extern const char kLauncherPagePage[]; |
| 82 extern const char kLauncherPageIcons[]; |
80 extern const char kLaunchHeight[]; | 83 extern const char kLaunchHeight[]; |
81 extern const char kLaunchLocalPath[]; | 84 extern const char kLaunchLocalPath[]; |
82 extern const char kLaunchWebURL[]; | 85 extern const char kLaunchWebURL[]; |
83 extern const char kLaunchWidth[]; | 86 extern const char kLaunchWidth[]; |
84 extern const char kLayouts[]; | 87 extern const char kLayouts[]; |
85 extern const char kManifestVersion[]; | 88 extern const char kManifestVersion[]; |
86 extern const char kMatchAboutBlank[]; | 89 extern const char kMatchAboutBlank[]; |
87 extern const char kMatches[]; | 90 extern const char kMatches[]; |
88 extern const char kMIMETypes[]; | 91 extern const char kMIMETypes[]; |
89 extern const char kMimeTypesHandler[]; | 92 extern const char kMimeTypesHandler[]; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 extern const char kWebRequestConflictsWithLazyBackground[]; | 480 extern const char kWebRequestConflictsWithLazyBackground[]; |
478 #if defined(OS_CHROMEOS) | 481 #if defined(OS_CHROMEOS) |
479 extern const char kIllegalPlugins[]; | 482 extern const char kIllegalPlugins[]; |
480 #endif | 483 #endif |
481 | 484 |
482 } // namespace manifest_errors | 485 } // namespace manifest_errors |
483 | 486 |
484 } // namespace extensions | 487 } // namespace extensions |
485 | 488 |
486 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 489 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |