Renamed speech recognition code in preparation for introducing a new speech implementation.
- The general-purpose speech recognition classes (that will be needed also by future code) have been renamed to SpeechRecognition*;
- The IPC Messages and dispatcher(host) classes that are only related to the current input tag (x-webkit-speech) support have been renamed to InputTagSpeech*;
- The namespace has been renamed from speech_input to speech;
BUG=116954
TEST=
Review URL: https://chromiumcodereview.appspot.com/9568002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125378 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index a7c893b8..b253f53 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -76,7 +76,7 @@
class RenderWidgetFullscreenPepper;
class RendererAccessibility;
class SkBitmap;
-class SpeechInputDispatcher;
+class InputTagSpeechDispatcher;
struct ViewMsg_Navigate_Params;
struct ViewMsg_StopFinding_Params;
struct ViewMsg_SwapOut_Params;
@@ -1179,7 +1179,7 @@
WebIntentsHost* intents_host_;
// The speech dispatcher attached to this view, lazily initialized.
- SpeechInputDispatcher* speech_input_dispatcher_;
+ InputTagSpeechDispatcher* input_tag_speech_dispatcher_;
// Device orientation dispatcher attached to this view; lazily initialized.
DeviceOrientationDispatcher* device_orientation_dispatcher_;