| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| ===================================================================
|
| --- content/browser/renderer_host/render_process_host_impl.cc (revision 154648)
|
| +++ content/browser/renderer_host/render_process_host_impl.cc (working copy)
|
| @@ -55,6 +55,7 @@
|
| #include "content/browser/gpu/gpu_data_manager_impl.h"
|
| #include "content/browser/gpu/gpu_process_host.h"
|
| #include "content/browser/histogram_message_filter.h"
|
| +#include "content/browser/hyphenator/hyphenator_message_filter.h"
|
| #include "content/browser/in_process_webkit/indexed_db_context_impl.h"
|
| #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
|
| #include "content/browser/mime_registry_message_filter.h"
|
| @@ -608,7 +609,8 @@
|
| GetContentClient()->browser()->CreateQuotaPermissionContext()));
|
| channel_->AddFilter(new GamepadBrowserMessageFilter(this));
|
| channel_->AddFilter(new ProfilerMessageFilter(PROCESS_TYPE_RENDERER));
|
| - channel_->AddFilter(new content::HistogramMessageFilter());
|
| + channel_->AddFilter(new HistogramMessageFilter());
|
| + channel_->AddFilter(new HyphenatorMessageFilter(this));
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|