| 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 d2d8f74d6aa0ded6f93084946479ef1332413524..810a943153d3da36695fee787f04f420c9e9bf50 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -38,6 +38,7 @@
|
| #include "cc/base/switches.h"
|
| #include "content/browser/appcache/appcache_dispatcher_host.h"
|
| #include "content/browser/appcache/chrome_appcache_service.h"
|
| +#include "content/browser/battery_status/battery_status_message_filter.h"
|
| #include "content/browser/browser_child_process_host_impl.h"
|
| #include "content/browser/browser_main.h"
|
| #include "content/browser/browser_main_loop.h"
|
| @@ -834,6 +835,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| screen_orientation_dispatcher_host_ = new ScreenOrientationDispatcherHost();
|
| AddFilter(screen_orientation_dispatcher_host_);
|
| AddFilter(new PushMessagingMessageFilter());
|
| + AddFilter(new BatteryStatusMessageFilter());
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|