| 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 4684d0ee067b7553ad0216341afb5addeaa2e000..a7a0874b19c7ebf18b80f07359f66a2b3dd5a41b 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -92,6 +92,7 @@
|
| #include "content/browser/speech/speech_recognition_dispatcher_host.h"
|
| #include "content/browser/storage_partition_impl.h"
|
| #include "content/browser/tracing/trace_message_filter.h"
|
| +#include "content/browser/vibration/vibration_message_filter.h"
|
| #include "content/browser/webui/web_ui_controller_factory_registry.h"
|
| #include "content/browser/worker_host/worker_message_filter.h"
|
| #include "content/browser/worker_host/worker_storage_partition.h"
|
| @@ -708,6 +709,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| switches::kEnableMemoryBenchmarking))
|
| channel_->AddFilter(new MemoryBenchmarkMessageFilter());
|
| #endif
|
| + channel_->AddFilter(new VibrationMessageFilter());
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|