Index: content/browser/web_contents/web_contents_impl.cc |
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc |
index d3e8b13b9d3dbba81e04229caf1ad69f00cf4940..84ed3de3aff8ced920e29723c9818b0273a7ce01 100644 |
--- a/content/browser/web_contents/web_contents_impl.cc |
+++ b/content/browser/web_contents/web_contents_impl.cc |
@@ -54,6 +54,7 @@ |
#include "content/browser/renderer_host/render_widget_host_view_base.h" |
#include "content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h" |
#include "content/browser/site_instance_impl.h" |
+#include "content/browser/speech/speech_recognition_dispatcher_host.h" |
#include "content/browser/web_contents/web_contents_view_guest.h" |
#include "content/browser/webui/generic_handler.h" |
#include "content/browser/webui/web_ui_controller_factory_registry.h" |
@@ -1197,6 +1198,9 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) { |
manifest_manager_host_.reset(new ManifestManagerHost(this)); |
+ speech_recognition_dispatcher_host_.reset( |
+ new SpeechRecognitionDispatcherHost(this)); |
+ |
#if defined(OS_ANDROID) |
date_time_chooser_.reset(new DateTimeChooserAndroid()); |
#endif |