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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 const char kUsbPrinters[] = "usb_printers"; | 177 const char kUsbPrinters[] = "usb_printers"; |
178 const char kVersion[] = "version"; | 178 const char kVersion[] = "version"; |
179 const char kVersionName[] = "version_name"; | 179 const char kVersionName[] = "version_name"; |
180 const char kWebAccessibleResources[] = "web_accessible_resources"; | 180 const char kWebAccessibleResources[] = "web_accessible_resources"; |
181 const char kWebURLs[] = "app.urls"; | 181 const char kWebURLs[] = "app.urls"; |
182 const char kWebview[] = "webview"; | 182 const char kWebview[] = "webview"; |
183 const char kWebviewAccessibleResources[] = "accessible_resources"; | 183 const char kWebviewAccessibleResources[] = "accessible_resources"; |
184 const char kWebviewName[] = "name"; | 184 const char kWebviewName[] = "name"; |
185 const char kWebviewPartitions[] = "partitions"; | 185 const char kWebviewPartitions[] = "partitions"; |
186 const char kWhitelist[] = "whitelist"; | 186 const char kWhitelist[] = "whitelist"; |
| 187 #if defined(OS_CHROMEOS) |
| 188 const char kFileSystemProvider[] = "file_system_provider"; |
| 189 #endif |
187 | 190 |
188 } // namespace manifest_keys | 191 } // namespace manifest_keys |
189 | 192 |
190 namespace manifest_values { | 193 namespace manifest_values { |
191 | 194 |
192 const char kApiKey[] = "api_key"; | 195 const char kApiKey[] = "api_key"; |
193 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; | 196 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; |
194 const char kIncognitoSplit[] = "split"; | 197 const char kIncognitoSplit[] = "split"; |
195 const char kIncognitoSpanning[] = "spanning"; | 198 const char kIncognitoSpanning[] = "spanning"; |
196 const char kIsolatedStorage[] = "storage"; | 199 const char kIsolatedStorage[] = "storage"; |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 const char kWebRequestConflictsWithLazyBackground[] = | 711 const char kWebRequestConflictsWithLazyBackground[] = |
709 "The 'webRequest' API cannot be used with event pages."; | 712 "The 'webRequest' API cannot be used with event pages."; |
710 #if defined(OS_CHROMEOS) | 713 #if defined(OS_CHROMEOS) |
711 const char kIllegalPlugins[] = | 714 const char kIllegalPlugins[] = |
712 "Extensions cannot install plugins on Chrome OS"; | 715 "Extensions cannot install plugins on Chrome OS"; |
713 #endif | 716 #endif |
714 | 717 |
715 } // namespace manifest_errors | 718 } // namespace manifest_errors |
716 | 719 |
717 } // namespace extensions | 720 } // namespace extensions |
OLD | NEW |