| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 const char kTtsVoices[] = "voices"; | 139 const char kTtsVoices[] = "voices"; |
| 140 const char kTtsVoicesEventTypeEnd[] = "end"; | 140 const char kTtsVoicesEventTypeEnd[] = "end"; |
| 141 const char kTtsVoicesEventTypeError[] = "error"; | 141 const char kTtsVoicesEventTypeError[] = "error"; |
| 142 const char kTtsVoicesEventTypeMarker[] = "marker"; | 142 const char kTtsVoicesEventTypeMarker[] = "marker"; |
| 143 const char kTtsVoicesEventTypeSentence[] = "sentence"; | 143 const char kTtsVoicesEventTypeSentence[] = "sentence"; |
| 144 const char kTtsVoicesEventTypeStart[] = "start"; | 144 const char kTtsVoicesEventTypeStart[] = "start"; |
| 145 const char kTtsVoicesEventTypeWord[] = "word"; | 145 const char kTtsVoicesEventTypeWord[] = "word"; |
| 146 const char kTtsVoicesEventTypes[] = "event_types"; | 146 const char kTtsVoicesEventTypes[] = "event_types"; |
| 147 const char kTtsVoicesGender[] = "gender"; | 147 const char kTtsVoicesGender[] = "gender"; |
| 148 const char kTtsVoicesLang[] = "lang"; | 148 const char kTtsVoicesLang[] = "lang"; |
| 149 const char kTtsVoicesRemote[] = "remote"; | |
| 150 const char kTtsVoicesVoiceName[] = "voice_name"; | 149 const char kTtsVoicesVoiceName[] = "voice_name"; |
| 151 const char kType[] = "type"; | 150 const char kType[] = "type"; |
| 152 const char kUpdateURL[] = "update_url"; | 151 const char kUpdateURL[] = "update_url"; |
| 153 const char kUrlHandlers[] = "url_handlers"; | 152 const char kUrlHandlers[] = "url_handlers"; |
| 154 const char kUrlHandlerTitle[] = "title"; | 153 const char kUrlHandlerTitle[] = "title"; |
| 155 const char kVersion[] = "version"; | 154 const char kVersion[] = "version"; |
| 156 const char kWebAccessibleResources[] = "web_accessible_resources"; | 155 const char kWebAccessibleResources[] = "web_accessible_resources"; |
| 157 const char kWebURLs[] = "app.urls"; | 156 const char kWebURLs[] = "app.urls"; |
| 158 const char kWebview[] = "webview"; | 157 const char kWebview[] = "webview"; |
| 159 const char kWebviewAccessibleResources[] = "accessible_resources"; | 158 const char kWebviewAccessibleResources[] = "accessible_resources"; |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 const char kInvalidTts[] = | 566 const char kInvalidTts[] = |
| 568 "Invalid value for 'tts_engine'."; | 567 "Invalid value for 'tts_engine'."; |
| 569 const char kInvalidTtsVoices[] = | 568 const char kInvalidTtsVoices[] = |
| 570 "Invalid value for 'tts_engine.voices'."; | 569 "Invalid value for 'tts_engine.voices'."; |
| 571 const char kInvalidTtsVoicesEventTypes[] = | 570 const char kInvalidTtsVoicesEventTypes[] = |
| 572 "Invalid value for 'tts_engine.voices[*].event_types'."; | 571 "Invalid value for 'tts_engine.voices[*].event_types'."; |
| 573 const char kInvalidTtsVoicesGender[] = | 572 const char kInvalidTtsVoicesGender[] = |
| 574 "Invalid value for 'tts_engine.voices[*].gender'."; | 573 "Invalid value for 'tts_engine.voices[*].gender'."; |
| 575 const char kInvalidTtsVoicesLang[] = | 574 const char kInvalidTtsVoicesLang[] = |
| 576 "Invalid value for 'tts_engine.voices[*].lang'."; | 575 "Invalid value for 'tts_engine.voices[*].lang'."; |
| 577 const char kInvalidTtsVoicesRemote[] = | |
| 578 "Invalid value for 'tts_engine.voices[*].remote'."; | |
| 579 const char kInvalidTtsVoicesVoiceName[] = | 576 const char kInvalidTtsVoicesVoiceName[] = |
| 580 "Invalid value for 'tts_engine.voices[*].voice_name'."; | 577 "Invalid value for 'tts_engine.voices[*].voice_name'."; |
| 581 const char kInvalidUpdateURL[] = | 578 const char kInvalidUpdateURL[] = |
| 582 "Invalid value for update url: '[*]'."; | 579 "Invalid value for update url: '[*]'."; |
| 583 const char kInvalidURLHandlers[] = | 580 const char kInvalidURLHandlers[] = |
| 584 "Invalid value for 'url_handlers'."; | 581 "Invalid value for 'url_handlers'."; |
| 585 const char kInvalidURLHandlerPatternElement[] = | 582 const char kInvalidURLHandlerPatternElement[] = |
| 586 "Invalid value for 'url_handlers[*]'."; | 583 "Invalid value for 'url_handlers[*]'."; |
| 587 const char kInvalidURLHandlerTitle[] = | 584 const char kInvalidURLHandlerTitle[] = |
| 588 "Invalid value for 'url_handlers[*].title'."; | 585 "Invalid value for 'url_handlers[*].title'."; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 const char kWebRequestConflictsWithLazyBackground[] = | 673 const char kWebRequestConflictsWithLazyBackground[] = |
| 677 "The 'webRequest' API cannot be used with event pages."; | 674 "The 'webRequest' API cannot be used with event pages."; |
| 678 #if defined(OS_CHROMEOS) | 675 #if defined(OS_CHROMEOS) |
| 679 const char kIllegalPlugins[] = | 676 const char kIllegalPlugins[] = |
| 680 "Extensions cannot install plugins on Chrome OS"; | 677 "Extensions cannot install plugins on Chrome OS"; |
| 681 #endif | 678 #endif |
| 682 | 679 |
| 683 } // namespace manifest_errors | 680 } // namespace manifest_errors |
| 684 | 681 |
| 685 } // namespace extensions | 682 } // namespace extensions |
| OLD | NEW |