| 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 db99799503e178616a9d835b94c34229dcea9e10..0ee68e577f63079d5a72238f34bd7ae9a9d10213 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"
|
| @@ -833,6 +834,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| screen_orientation_dispatcher_host_ = new ScreenOrientationDispatcherHost();
|
| AddFilter(screen_orientation_dispatcher_host_);
|
| AddFilter(new PushMessagingMessageFilter());
|
| + AddFilter(new BatteryStatusMessageFilter());
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|