| 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 7139f7eaecf7fffa109e80a92bbeebf69c9471cf..62089bd314675917e9ba7b633e9c267db7b4921e 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() {
|
|
|