Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index 2717a4ef12cc675a8603419834280b14b14e5efd..b9a62cea981848033a2b6afd6929f80aa5e1d0e4 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -115,7 +115,7 @@ |
#endif |
#if defined(ENABLE_INPUT_SPEECH) |
-#include "content/browser/speech/speech_input_dispatcher_host.h" |
+#include "content/browser/speech/speech_recognition_dispatcher_host.h" |
#endif |
#include "third_party/skia/include/core/SkBitmap.h" |
@@ -494,9 +494,9 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
channel_->AddFilter(new PepperMessageFilter(PepperMessageFilter::RENDERER, |
GetID(), resource_context)); |
#if defined(ENABLE_INPUT_SPEECH) |
- channel_->AddFilter(new speech_input::SpeechInputDispatcherHost( |
+ channel_->AddFilter(new speech::SpeechRecognitionDispatcherHost( |
GetID(), browser_context->GetRequestContext(), |
- browser_context->GetSpeechInputPreferences(), |
+ browser_context->GetSpeechRecognitionPreferences(), |
content::BrowserMainLoop::GetAudioManager())); |
#endif |
channel_->AddFilter(new FileAndBlobMessageFilter( |