diff options
Diffstat (limited to 'content/browser/renderer_host/render_process_host_impl.cc')
-rw-r--r-- | content/browser/renderer_host/render_process_host_impl.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc index 7bd9337..3162e8e 100644 --- a/content/browser/renderer_host/render_process_host_impl.cc +++ b/content/browser/renderer_host/render_process_host_impl.cc @@ -651,12 +651,10 @@ void RenderProcessHostImpl::CreateMessageFilters() { #endif #if defined(ENABLE_INPUT_SPEECH) channel_->AddFilter(new InputTagSpeechDispatcherHost( - IsGuest(), GetID(), storage_partition_impl_->GetURLRequestContext(), - browser_context->GetSpeechRecognitionPreferences())); + IsGuest(), GetID(), storage_partition_impl_->GetURLRequestContext())); #endif channel_->AddFilter(new SpeechRecognitionDispatcherHost( - GetID(), storage_partition_impl_->GetURLRequestContext(), - browser_context->GetSpeechRecognitionPreferences())); + GetID(), storage_partition_impl_->GetURLRequestContext())); channel_->AddFilter(new FileAPIMessageFilter( GetID(), storage_partition_impl_->GetURLRequestContext(), |