diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-01 05:11:28 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-01 05:11:28 +0000 |
commit | c00c24c80f6f7e194a11891a7bb72e007704879f (patch) | |
tree | 75b715df7cbc567621678e7e9bf5e7d68ddd0eeb /extensions/common/manifest_constants.cc | |
parent | 0a8766ab9ce49064ef25df26da83051831b8cd61 (diff) | |
download | chromium_src-c00c24c80f6f7e194a11891a7bb72e007704879f.zip chromium_src-c00c24c80f6f7e194a11891a7bb72e007704879f.tar.gz chromium_src-c00c24c80f6f7e194a11891a7bb72e007704879f.tar.bz2 |
Revert 232242 "Implement Google network speech synthesis."
Failing on "Win 7 Tests (1)" http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%281%29/builds/25765
> Implement Google network speech synthesis.
>
> See bug for context. Implements a component extension
> that provides speech synthesis using Google's speech
> synthesis API.
>
> Adds a "remote" flag to the TTS and TTS Engine APIs
> so that it's possible for clients to distinguish
> between local and remote speech engines.
>
> Adds a new private extension API to expose Google's
> API key, needed to make the request.
>
> BUG=308250
>
> Review URL: https://codereview.chromium.org/27034009
R=dmazzoni@chromium.org
TBR=dmazzoni@chromium.org
Review URL: https://codereview.chromium.org/51213003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232288 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common/manifest_constants.cc')
-rw-r--r-- | extensions/common/manifest_constants.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/extensions/common/manifest_constants.cc b/extensions/common/manifest_constants.cc index b15db19..962ff47 100644 --- a/extensions/common/manifest_constants.cc +++ b/extensions/common/manifest_constants.cc @@ -146,7 +146,6 @@ const char kTtsVoicesEventTypeWord[] = "word"; const char kTtsVoicesEventTypes[] = "event_types"; const char kTtsVoicesGender[] = "gender"; const char kTtsVoicesLang[] = "lang"; -const char kTtsVoicesRemote[] = "remote"; const char kTtsVoicesVoiceName[] = "voice_name"; const char kType[] = "type"; const char kUpdateURL[] = "update_url"; @@ -574,8 +573,6 @@ const char kInvalidTtsVoicesGender[] = "Invalid value for 'tts_engine.voices[*].gender'."; const char kInvalidTtsVoicesLang[] = "Invalid value for 'tts_engine.voices[*].lang'."; -const char kInvalidTtsVoicesRemote[] = - "Invalid value for 'tts_engine.voices[*].remote'."; const char kInvalidTtsVoicesVoiceName[] = "Invalid value for 'tts_engine.voices[*].voice_name'."; const char kInvalidUpdateURL[] = |