Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 12589005: Implement web speech synthesis. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webtts
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 #include "content/browser/renderer_host/render_message_filter.h" 79 #include "content/browser/renderer_host/render_message_filter.h"
80 #include "content/browser/renderer_host/render_view_host_delegate.h" 80 #include "content/browser/renderer_host/render_view_host_delegate.h"
81 #include "content/browser/renderer_host/render_view_host_impl.h" 81 #include "content/browser/renderer_host/render_view_host_impl.h"
82 #include "content/browser/renderer_host/render_widget_helper.h" 82 #include "content/browser/renderer_host/render_widget_helper.h"
83 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" 83 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h"
84 #include "content/browser/renderer_host/text_input_client_message_filter.h" 84 #include "content/browser/renderer_host/text_input_client_message_filter.h"
85 #include "content/browser/resolve_proxy_msg_helper.h" 85 #include "content/browser/resolve_proxy_msg_helper.h"
86 #include "content/browser/storage_partition_impl.h" 86 #include "content/browser/storage_partition_impl.h"
87 #include "content/browser/speech/input_tag_speech_dispatcher_host.h" 87 #include "content/browser/speech/input_tag_speech_dispatcher_host.h"
88 #include "content/browser/speech/speech_recognition_dispatcher_host.h" 88 #include "content/browser/speech/speech_recognition_dispatcher_host.h"
89 #include "content/browser/speech/tts_dispatcher_host_impl.h"
89 #include "content/browser/tracing/trace_message_filter.h" 90 #include "content/browser/tracing/trace_message_filter.h"
90 #include "content/browser/webui/web_ui_controller_factory_registry.h" 91 #include "content/browser/webui/web_ui_controller_factory_registry.h"
91 #include "content/browser/worker_host/worker_storage_partition.h" 92 #include "content/browser/worker_host/worker_storage_partition.h"
92 #include "content/browser/worker_host/worker_message_filter.h" 93 #include "content/browser/worker_host/worker_message_filter.h"
93 #include "content/common/child_process_host_impl.h" 94 #include "content/common/child_process_host_impl.h"
94 #include "content/common/child_process_messages.h" 95 #include "content/common/child_process_messages.h"
95 #include "content/common/gpu/gpu_messages.h" 96 #include "content/common/gpu/gpu_messages.h"
96 #include "content/common/resource_messages.h" 97 #include "content/common/resource_messages.h"
97 #include "content/common/view_messages.h" 98 #include "content/common/view_messages.h"
98 #include "content/public/browser/browser_context.h" 99 #include "content/public/browser/browser_context.h"
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 channel_->AddFilter(new ResolveProxyMsgHelper( 603 channel_->AddFilter(new ResolveProxyMsgHelper(
603 browser_context->GetRequestContextForRenderProcess(GetID()))); 604 browser_context->GetRequestContextForRenderProcess(GetID())));
604 channel_->AddFilter(new QuotaDispatcherHost( 605 channel_->AddFilter(new QuotaDispatcherHost(
605 GetID(), 606 GetID(),
606 storage_partition_impl_->GetQuotaManager(), 607 storage_partition_impl_->GetQuotaManager(),
607 GetContentClient()->browser()->CreateQuotaPermissionContext())); 608 GetContentClient()->browser()->CreateQuotaPermissionContext()));
608 channel_->AddFilter(new GamepadBrowserMessageFilter()); 609 channel_->AddFilter(new GamepadBrowserMessageFilter());
609 channel_->AddFilter(new ProfilerMessageFilter(PROCESS_TYPE_RENDERER)); 610 channel_->AddFilter(new ProfilerMessageFilter(PROCESS_TYPE_RENDERER));
610 channel_->AddFilter(new HistogramMessageFilter()); 611 channel_->AddFilter(new HistogramMessageFilter());
611 channel_->AddFilter(new HyphenatorMessageFilter(this)); 612 channel_->AddFilter(new HyphenatorMessageFilter(this));
613 channel_->AddFilter(new TtsDispatcherHostImpl(GetID(), GetBrowserContext()));
612 } 614 }
613 615
614 int RenderProcessHostImpl::GetNextRoutingID() { 616 int RenderProcessHostImpl::GetNextRoutingID() {
615 return widget_helper_->GetNextRoutingID(); 617 return widget_helper_->GetNextRoutingID();
616 } 618 }
617 619
618 void RenderProcessHostImpl::CancelResourceRequests(int render_widget_id) { 620 void RenderProcessHostImpl::CancelResourceRequests(int render_widget_id) {
619 widget_helper_->CancelResourceRequests(render_widget_id); 621 widget_helper_->CancelResourceRequests(render_widget_id);
620 } 622 }
621 623
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 TRACE_EVENT0("renderer_host", 1640 TRACE_EVENT0("renderer_host",
1639 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1641 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1640 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1642 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1641 ack_params.sync_point = 0; 1643 ack_params.sync_point = 0;
1642 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1644 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1643 gpu_process_host_id, 1645 gpu_process_host_id,
1644 ack_params); 1646 ack_params);
1645 } 1647 }
1646 1648
1647 } // namespace content 1649 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698