Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: extensions/common/manifest_constants.cc

Issue 27034009: Implement Google network speech synthesis (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix getApiKey description Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 const char kTtsVoices[] = "voices"; 135 const char kTtsVoices[] = "voices";
136 const char kTtsVoicesEventTypeEnd[] = "end"; 136 const char kTtsVoicesEventTypeEnd[] = "end";
137 const char kTtsVoicesEventTypeError[] = "error"; 137 const char kTtsVoicesEventTypeError[] = "error";
138 const char kTtsVoicesEventTypeMarker[] = "marker"; 138 const char kTtsVoicesEventTypeMarker[] = "marker";
139 const char kTtsVoicesEventTypeSentence[] = "sentence"; 139 const char kTtsVoicesEventTypeSentence[] = "sentence";
140 const char kTtsVoicesEventTypeStart[] = "start"; 140 const char kTtsVoicesEventTypeStart[] = "start";
141 const char kTtsVoicesEventTypeWord[] = "word"; 141 const char kTtsVoicesEventTypeWord[] = "word";
142 const char kTtsVoicesEventTypes[] = "event_types"; 142 const char kTtsVoicesEventTypes[] = "event_types";
143 const char kTtsVoicesGender[] = "gender"; 143 const char kTtsVoicesGender[] = "gender";
144 const char kTtsVoicesLang[] = "lang"; 144 const char kTtsVoicesLang[] = "lang";
145 const char kTtsVoicesRemote[] = "remote";
145 const char kTtsVoicesVoiceName[] = "voice_name"; 146 const char kTtsVoicesVoiceName[] = "voice_name";
146 const char kType[] = "type"; 147 const char kType[] = "type";
147 const char kUpdateURL[] = "update_url"; 148 const char kUpdateURL[] = "update_url";
148 const char kUrlHandlers[] = "url_handlers"; 149 const char kUrlHandlers[] = "url_handlers";
149 const char kUrlHandlerTitle[] = "title"; 150 const char kUrlHandlerTitle[] = "title";
150 const char kVersion[] = "version"; 151 const char kVersion[] = "version";
151 const char kWebAccessibleResources[] = "web_accessible_resources"; 152 const char kWebAccessibleResources[] = "web_accessible_resources";
152 const char kWebRtc[] = "webrtc"; 153 const char kWebRtc[] = "webrtc";
153 const char kWebURLs[] = "app.urls"; 154 const char kWebURLs[] = "app.urls";
154 const char kWebview[] = "webview"; 155 const char kWebview[] = "webview";
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 const char kInvalidTts[] = 558 const char kInvalidTts[] =
558 "Invalid value for 'tts_engine'."; 559 "Invalid value for 'tts_engine'.";
559 const char kInvalidTtsVoices[] = 560 const char kInvalidTtsVoices[] =
560 "Invalid value for 'tts_engine.voices'."; 561 "Invalid value for 'tts_engine.voices'.";
561 const char kInvalidTtsVoicesEventTypes[] = 562 const char kInvalidTtsVoicesEventTypes[] =
562 "Invalid value for 'tts_engine.voices[*].event_types'."; 563 "Invalid value for 'tts_engine.voices[*].event_types'.";
563 const char kInvalidTtsVoicesGender[] = 564 const char kInvalidTtsVoicesGender[] =
564 "Invalid value for 'tts_engine.voices[*].gender'."; 565 "Invalid value for 'tts_engine.voices[*].gender'.";
565 const char kInvalidTtsVoicesLang[] = 566 const char kInvalidTtsVoicesLang[] =
566 "Invalid value for 'tts_engine.voices[*].lang'."; 567 "Invalid value for 'tts_engine.voices[*].lang'.";
568 const char kInvalidTtsVoicesRemote[] =
569 "Invalid value for 'tts_engine.voices[*].remote'.";
567 const char kInvalidTtsVoicesVoiceName[] = 570 const char kInvalidTtsVoicesVoiceName[] =
568 "Invalid value for 'tts_engine.voices[*].voice_name'."; 571 "Invalid value for 'tts_engine.voices[*].voice_name'.";
569 const char kInvalidUpdateURL[] = 572 const char kInvalidUpdateURL[] =
570 "Invalid value for update url: '[*]'."; 573 "Invalid value for update url: '[*]'.";
571 const char kInvalidURLHandlers[] = 574 const char kInvalidURLHandlers[] =
572 "Invalid value for 'url_handlers'."; 575 "Invalid value for 'url_handlers'.";
573 const char kInvalidURLHandlerPatternElement[] = 576 const char kInvalidURLHandlerPatternElement[] =
574 "Invalid value for 'url_handlers[*]'."; 577 "Invalid value for 'url_handlers[*]'.";
575 const char kInvalidURLHandlerTitle[] = 578 const char kInvalidURLHandlerTitle[] =
576 "Invalid value for 'url_handlers[*].title'."; 579 "Invalid value for 'url_handlers[*].title'.";
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 const char kWebRequestConflictsWithLazyBackground[] = 667 const char kWebRequestConflictsWithLazyBackground[] =
665 "The 'webRequest' API cannot be used with event pages."; 668 "The 'webRequest' API cannot be used with event pages.";
666 #if defined(OS_CHROMEOS) 669 #if defined(OS_CHROMEOS)
667 const char kIllegalPlugins[] = 670 const char kIllegalPlugins[] =
668 "Extensions cannot install plugins on Chrome OS"; 671 "Extensions cannot install plugins on Chrome OS";
669 #endif 672 #endif
670 673
671 } // namespace manifest_errors 674 } // namespace manifest_errors
672 675
673 } // namespace extensions 676 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698