| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 const char kTtsVoicesEventTypes[] = "event_types"; | 167 const char kTtsVoicesEventTypes[] = "event_types"; |
| 168 const char kTtsVoicesGender[] = "gender"; | 168 const char kTtsVoicesGender[] = "gender"; |
| 169 const char kTtsVoicesLang[] = "lang"; | 169 const char kTtsVoicesLang[] = "lang"; |
| 170 const char kTtsVoicesRemote[] = "remote"; | 170 const char kTtsVoicesRemote[] = "remote"; |
| 171 const char kTtsVoicesVoiceName[] = "voice_name"; | 171 const char kTtsVoicesVoiceName[] = "voice_name"; |
| 172 const char kType[] = "type"; | 172 const char kType[] = "type"; |
| 173 const char kUIOverride[] = "chrome_ui_overrides"; | 173 const char kUIOverride[] = "chrome_ui_overrides"; |
| 174 const char kUpdateURL[] = "update_url"; | 174 const char kUpdateURL[] = "update_url"; |
| 175 const char kUrlHandlers[] = "url_handlers"; | 175 const char kUrlHandlers[] = "url_handlers"; |
| 176 const char kUrlHandlerTitle[] = "title"; | 176 const char kUrlHandlerTitle[] = "title"; |
| 177 const char kUsbPrinters[] = "usb_printers"; |
| 177 const char kVersion[] = "version"; | 178 const char kVersion[] = "version"; |
| 178 const char kVersionName[] = "version_name"; | 179 const char kVersionName[] = "version_name"; |
| 179 const char kWebAccessibleResources[] = "web_accessible_resources"; | 180 const char kWebAccessibleResources[] = "web_accessible_resources"; |
| 180 const char kWebURLs[] = "app.urls"; | 181 const char kWebURLs[] = "app.urls"; |
| 181 const char kWebview[] = "webview"; | 182 const char kWebview[] = "webview"; |
| 182 const char kWebviewAccessibleResources[] = "accessible_resources"; | 183 const char kWebviewAccessibleResources[] = "accessible_resources"; |
| 183 const char kWebviewName[] = "name"; | 184 const char kWebviewName[] = "name"; |
| 184 const char kWebviewPartitions[] = "partitions"; | 185 const char kWebviewPartitions[] = "partitions"; |
| 185 const char kWhitelist[] = "whitelist"; | 186 const char kWhitelist[] = "whitelist"; |
| 186 | 187 |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 const char kWebRequestConflictsWithLazyBackground[] = | 708 const char kWebRequestConflictsWithLazyBackground[] = |
| 708 "The 'webRequest' API cannot be used with event pages."; | 709 "The 'webRequest' API cannot be used with event pages."; |
| 709 #if defined(OS_CHROMEOS) | 710 #if defined(OS_CHROMEOS) |
| 710 const char kIllegalPlugins[] = | 711 const char kIllegalPlugins[] = |
| 711 "Extensions cannot install plugins on Chrome OS"; | 712 "Extensions cannot install plugins on Chrome OS"; |
| 712 #endif | 713 #endif |
| 713 | 714 |
| 714 } // namespace manifest_errors | 715 } // namespace manifest_errors |
| 715 | 716 |
| 716 } // namespace extensions | 717 } // namespace extensions |
| OLD | NEW |