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

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: Revert change to register_engine for now, rebase for relanding Created 7 years, 1 month 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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
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";
149 const char kTtsVoicesVoiceName[] = "voice_name"; 150 const char kTtsVoicesVoiceName[] = "voice_name";
150 const char kType[] = "type"; 151 const char kType[] = "type";
151 const char kUpdateURL[] = "update_url"; 152 const char kUpdateURL[] = "update_url";
152 const char kUrlHandlers[] = "url_handlers"; 153 const char kUrlHandlers[] = "url_handlers";
153 const char kUrlHandlerTitle[] = "title"; 154 const char kUrlHandlerTitle[] = "title";
154 const char kVersion[] = "version"; 155 const char kVersion[] = "version";
155 const char kWebAccessibleResources[] = "web_accessible_resources"; 156 const char kWebAccessibleResources[] = "web_accessible_resources";
156 const char kWebURLs[] = "app.urls"; 157 const char kWebURLs[] = "app.urls";
157 const char kWebview[] = "webview"; 158 const char kWebview[] = "webview";
158 const char kWebviewAccessibleResources[] = "accessible_resources"; 159 const char kWebviewAccessibleResources[] = "accessible_resources";
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 const char kInvalidTts[] = 567 const char kInvalidTts[] =
567 "Invalid value for 'tts_engine'."; 568 "Invalid value for 'tts_engine'.";
568 const char kInvalidTtsVoices[] = 569 const char kInvalidTtsVoices[] =
569 "Invalid value for 'tts_engine.voices'."; 570 "Invalid value for 'tts_engine.voices'.";
570 const char kInvalidTtsVoicesEventTypes[] = 571 const char kInvalidTtsVoicesEventTypes[] =
571 "Invalid value for 'tts_engine.voices[*].event_types'."; 572 "Invalid value for 'tts_engine.voices[*].event_types'.";
572 const char kInvalidTtsVoicesGender[] = 573 const char kInvalidTtsVoicesGender[] =
573 "Invalid value for 'tts_engine.voices[*].gender'."; 574 "Invalid value for 'tts_engine.voices[*].gender'.";
574 const char kInvalidTtsVoicesLang[] = 575 const char kInvalidTtsVoicesLang[] =
575 "Invalid value for 'tts_engine.voices[*].lang'."; 576 "Invalid value for 'tts_engine.voices[*].lang'.";
577 const char kInvalidTtsVoicesRemote[] =
578 "Invalid value for 'tts_engine.voices[*].remote'.";
576 const char kInvalidTtsVoicesVoiceName[] = 579 const char kInvalidTtsVoicesVoiceName[] =
577 "Invalid value for 'tts_engine.voices[*].voice_name'."; 580 "Invalid value for 'tts_engine.voices[*].voice_name'.";
578 const char kInvalidUpdateURL[] = 581 const char kInvalidUpdateURL[] =
579 "Invalid value for update url: '[*]'."; 582 "Invalid value for update url: '[*]'.";
580 const char kInvalidURLHandlers[] = 583 const char kInvalidURLHandlers[] =
581 "Invalid value for 'url_handlers'."; 584 "Invalid value for 'url_handlers'.";
582 const char kInvalidURLHandlerPatternElement[] = 585 const char kInvalidURLHandlerPatternElement[] =
583 "Invalid value for 'url_handlers[*]'."; 586 "Invalid value for 'url_handlers[*]'.";
584 const char kInvalidURLHandlerTitle[] = 587 const char kInvalidURLHandlerTitle[] =
585 "Invalid value for 'url_handlers[*].title'."; 588 "Invalid value for 'url_handlers[*].title'.";
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 const char kWebRequestConflictsWithLazyBackground[] = 676 const char kWebRequestConflictsWithLazyBackground[] =
674 "The 'webRequest' API cannot be used with event pages."; 677 "The 'webRequest' API cannot be used with event pages.";
675 #if defined(OS_CHROMEOS) 678 #if defined(OS_CHROMEOS)
676 const char kIllegalPlugins[] = 679 const char kIllegalPlugins[] =
677 "Extensions cannot install plugins on Chrome OS"; 680 "Extensions cannot install plugins on Chrome OS";
678 #endif 681 #endif
679 682
680 } // namespace manifest_errors 683 } // namespace manifest_errors
681 684
682 } // namespace extensions 685 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698