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 f7a77f2fbab0457fcf8f69745dfc05f759106248..d89553d7e92098224fcb23858d8f0e6d4e21d8f0 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -91,6 +91,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" |
@@ -699,6 +700,7 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
switches::kEnableMemoryBenchmarking)) |
channel_->AddFilter(new MemoryBenchmarkMessageFilter()); |
#endif |
+ channel_->AddFilter(new VibrationMessageFilter()); |
} |
int RenderProcessHostImpl::GetNextRoutingID() { |