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 #include "extensions/common/manifest_constants.h" | 5 #include "extensions/common/manifest_constants.h" |
6 | 6 |
7 namespace extensions { | 7 namespace extensions { |
8 | 8 |
9 namespace manifest_keys { | 9 namespace manifest_keys { |
10 | 10 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 const char kIsolation[] = "app.isolation"; | 61 const char kIsolation[] = "app.isolation"; |
62 const char kJs[] = "js"; | 62 const char kJs[] = "js"; |
63 const char kKey[] = "key"; | 63 const char kKey[] = "key"; |
64 const char kKeycode[] = "keyCode"; | 64 const char kKeycode[] = "keyCode"; |
65 const char kKioskEnabled[] = "kiosk_enabled"; | 65 const char kKioskEnabled[] = "kiosk_enabled"; |
66 const char kKioskOnly[] = "kiosk_only"; | 66 const char kKioskOnly[] = "kiosk_only"; |
67 const char kKioskMode[] = "kiosk_mode"; | 67 const char kKioskMode[] = "kiosk_mode"; |
68 const char kLanguage[] = "language"; | 68 const char kLanguage[] = "language"; |
69 const char kLaunch[] = "app.launch"; | 69 const char kLaunch[] = "app.launch"; |
70 const char kLaunchContainer[] = "app.launch.container"; | 70 const char kLaunchContainer[] = "app.launch.container"; |
| 71 const char kLauncherPage[] = "launcher_page"; |
| 72 const char kLauncherPagePage[] = "launcher_page.page"; |
71 const char kLaunchHeight[] = "app.launch.height"; | 73 const char kLaunchHeight[] = "app.launch.height"; |
72 const char kLaunchLocalPath[] = "app.launch.local_path"; | 74 const char kLaunchLocalPath[] = "app.launch.local_path"; |
73 const char kLaunchWebURL[] = "app.launch.web_url"; | 75 const char kLaunchWebURL[] = "app.launch.web_url"; |
74 const char kLaunchWidth[] = "app.launch.width"; | 76 const char kLaunchWidth[] = "app.launch.width"; |
75 const char kLayouts[] = "layouts"; | 77 const char kLayouts[] = "layouts"; |
76 const char kManifestVersion[] = "manifest_version"; | 78 const char kManifestVersion[] = "manifest_version"; |
77 const char kMatchAboutBlank[] = "match_about_blank"; | 79 const char kMatchAboutBlank[] = "match_about_blank"; |
78 const char kMatches[] = "matches"; | 80 const char kMatches[] = "matches"; |
79 const char kMinimumChromeVersion[] = "minimum_chrome_version"; | 81 const char kMinimumChromeVersion[] = "minimum_chrome_version"; |
80 const char kMinimumVersion[] = "minimum_version"; | 82 const char kMinimumVersion[] = "minimum_version"; |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
723 const char kWebRequestConflictsWithLazyBackground[] = | 725 const char kWebRequestConflictsWithLazyBackground[] = |
724 "The 'webRequest' API cannot be used with event pages."; | 726 "The 'webRequest' API cannot be used with event pages."; |
725 #if defined(OS_CHROMEOS) | 727 #if defined(OS_CHROMEOS) |
726 const char kIllegalPlugins[] = | 728 const char kIllegalPlugins[] = |
727 "Extensions cannot install plugins on Chrome OS"; | 729 "Extensions cannot install plugins on Chrome OS"; |
728 #endif | 730 #endif |
729 | 731 |
730 } // namespace manifest_errors | 732 } // namespace manifest_errors |
731 | 733 |
732 } // namespace extensions | 734 } // namespace extensions |
OLD | NEW |