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[]; |
80 extern const char kLaunchHeight[]; | 82 extern const char kLaunchHeight[]; |
81 extern const char kLaunchLocalPath[]; | 83 extern const char kLaunchLocalPath[]; |
82 extern const char kLaunchWebURL[]; | 84 extern const char kLaunchWebURL[]; |
83 extern const char kLaunchWidth[]; | 85 extern const char kLaunchWidth[]; |
84 extern const char kLayouts[]; | 86 extern const char kLayouts[]; |
85 extern const char kManifestVersion[]; | 87 extern const char kManifestVersion[]; |
86 extern const char kMatchAboutBlank[]; | 88 extern const char kMatchAboutBlank[]; |
87 extern const char kMatches[]; | 89 extern const char kMatches[]; |
88 extern const char kMIMETypes[]; | 90 extern const char kMIMETypes[]; |
89 extern const char kMimeTypesHandler[]; | 91 extern const char kMimeTypesHandler[]; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 extern const char kWebRequestConflictsWithLazyBackground[]; | 479 extern const char kWebRequestConflictsWithLazyBackground[]; |
478 #if defined(OS_CHROMEOS) | 480 #if defined(OS_CHROMEOS) |
479 extern const char kIllegalPlugins[]; | 481 extern const char kIllegalPlugins[]; |
480 #endif | 482 #endif |
481 | 483 |
482 } // namespace manifest_errors | 484 } // namespace manifest_errors |
483 | 485 |
484 } // namespace extensions | 486 } // namespace extensions |
485 | 487 |
486 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 488 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |