| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) | 187 #if defined(OS_CHROMEOS) |
| 188 const char kFileSystemProvider[] = "file_system_provider"; | 188 const char kFileSystemProviderCapabilities[] = |
| 189 "file_system_provider_capabilities"; |
| 189 #endif | 190 #endif |
| 190 | 191 |
| 191 } // namespace manifest_keys | 192 } // namespace manifest_keys |
| 192 | 193 |
| 193 namespace manifest_values { | 194 namespace manifest_values { |
| 194 | 195 |
| 195 const char kApiKey[] = "api_key"; | 196 const char kApiKey[] = "api_key"; |
| 196 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; | 197 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; |
| 197 const char kIncognitoSplit[] = "split"; | 198 const char kIncognitoSplit[] = "split"; |
| 198 const char kIncognitoSpanning[] = "spanning"; | 199 const char kIncognitoSpanning[] = "spanning"; |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 const char kWebRequestConflictsWithLazyBackground[] = | 712 const char kWebRequestConflictsWithLazyBackground[] = |
| 712 "The 'webRequest' API cannot be used with event pages."; | 713 "The 'webRequest' API cannot be used with event pages."; |
| 713 #if defined(OS_CHROMEOS) | 714 #if defined(OS_CHROMEOS) |
| 714 const char kIllegalPlugins[] = | 715 const char kIllegalPlugins[] = |
| 715 "Extensions cannot install plugins on Chrome OS"; | 716 "Extensions cannot install plugins on Chrome OS"; |
| 716 #endif | 717 #endif |
| 717 | 718 |
| 718 } // namespace manifest_errors | 719 } // namespace manifest_errors |
| 719 | 720 |
| 720 } // namespace extensions | 721 } // namespace extensions |
| OLD | NEW |