| 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 00fe484fe3a89094f25cf43a0772812f30f3accc..0bbb29c81ae5550688270f722b6c4bbe196c018b 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -47,6 +47,7 @@
|
| #include "content/browser/browser_main_loop.h"
|
| #include "content/browser/browser_plugin/browser_plugin_message_filter.h"
|
| #include "content/browser/child_process_security_policy_impl.h"
|
| +#include "content/browser/device_sensors/device_light_message_filter.h"
|
| #include "content/browser/device_sensors/device_motion_message_filter.h"
|
| #include "content/browser/device_sensors/device_orientation_message_filter.h"
|
| #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
|
| @@ -884,6 +885,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| storage_partition_impl_->GetQuotaManager(),
|
| GetContentClient()->browser()->CreateQuotaPermissionContext()));
|
| AddFilter(new GamepadBrowserMessageFilter());
|
| + AddFilter(new DeviceLightMessageFilter());
|
| AddFilter(new DeviceMotionMessageFilter());
|
| AddFilter(new DeviceOrientationMessageFilter());
|
| AddFilter(new ProfilerMessageFilter(PROCESS_TYPE_RENDERER));
|
|
|