| 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 77a9d61724e5a1f552dca9a36120bb9c3322ec5a..8c217989a2de708856d1dded2dd578b6e6b68f20 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -45,6 +45,7 @@
|
| #include "content/browser/browser_main.h"
|
| #include "content/browser/browser_main_loop.h"
|
| #include "content/browser/child_process_security_policy_impl.h"
|
| +#include "content/browser/device_orientation/motion_message_filter.h"
|
| #include "content/browser/device_orientation/orientation_message_filter.h"
|
| #include "content/browser/dom_storage/dom_storage_context_impl.h"
|
| #include "content/browser/dom_storage/dom_storage_message_filter.h"
|
| @@ -566,6 +567,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| browser_context->GetRequestContext(),
|
| BrowserContext::GetFileSystemContext(browser_context),
|
| ChromeBlobStorageContext::GetFor(browser_context)));
|
| + channel_->AddFilter(new MotionMessageFilter());
|
| channel_->AddFilter(new OrientationMessageFilter());
|
| channel_->AddFilter(new FileUtilitiesMessageFilter(GetID()));
|
| channel_->AddFilter(new MimeRegistryMessageFilter());
|
| @@ -754,6 +756,7 @@ void RenderProcessHostImpl::PropagateBrowserCommandLineToRenderer(
|
| switches::kEnableAccessibilityLogging,
|
| switches::kEnableCssExclusions,
|
| switches::kEnableDCHECK,
|
| + switches::kEnableDeviceMotion,
|
| switches::kEnableEncryptedMedia,
|
| switches::kEnableFixedLayout,
|
| switches::kEnableGPUServiceLogging,
|
|
|