| Index: content/renderer/renderer_webkitplatformsupport_impl.h
|
| diff --git a/content/renderer/renderer_webkitplatformsupport_impl.h b/content/renderer/renderer_webkitplatformsupport_impl.h
|
| index 5e3ba6937dc066eeabf5b449d1dabf4deea6cd3f..607a8f68d678a6fd2b61fa24df9cc0be3829cf5a 100644
|
| --- a/content/renderer/renderer_webkitplatformsupport_impl.h
|
| +++ b/content/renderer/renderer_webkitplatformsupport_impl.h
|
| @@ -36,6 +36,7 @@ class WebScreenOrientationListener;
|
| }
|
|
|
| namespace content {
|
| +class BatteryStatusEventPump;
|
| class DeviceMotionEventPump;
|
| class DeviceOrientationEventPump;
|
| class QuotaMessageFilter;
|
| @@ -139,6 +140,8 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
|
| blink::WebDeviceMotionListener* listener) OVERRIDE;
|
| virtual void setDeviceOrientationListener(
|
| blink::WebDeviceOrientationListener* listener) OVERRIDE;
|
| + virtual void setBatteryStatusListener(
|
| + blink::WebBatteryStatusListener* listener) OVERRIDE;
|
| virtual void queryStorageUsageAndQuota(
|
| const blink::WebURL& storage_partition,
|
| blink::WebStorageQuotaType,
|
| @@ -218,6 +221,8 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
|
| scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_;
|
| scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_;
|
|
|
| + scoped_ptr<BatteryStatusEventPump> battery_status_event_pump_;
|
| +
|
| scoped_refptr<base::MessageLoopProxy> child_thread_loop_;
|
| scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_;
|
| scoped_refptr<ThreadSafeSender> thread_safe_sender_;
|
|
|