diff options
author | timvolodine@chromium.org <timvolodine@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-14 23:40:59 +0000 |
---|---|---|
committer | timvolodine@chromium.org <timvolodine@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-14 23:40:59 +0000 |
commit | 5981d401eebc28c84a14fa94c66120559949c9eb (patch) | |
tree | 38f3f83d038249af00d8a9274e66a10475f37724 /content/renderer/renderer_webkitplatformsupport_impl.cc | |
parent | 649e4fbc24745cf547875123e02e909200277b32 (diff) | |
download | chromium_src-5981d401eebc28c84a14fa94c66120559949c9eb.zip chromium_src-5981d401eebc28c84a14fa94c66120559949c9eb.tar.gz chromium_src-5981d401eebc28c84a14fa94c66120559949c9eb.tar.bz2 |
Add Battery Status API support in content/renderer and IPC messages.
This patch defines the async IPCs needed for the Battery Status API.
It also implements the platform-side part with a
setBatteryStatusListener() method and a dispatcher class for
propagating messages to blink. Unit tests for the dispatcher
class are also included.
BUG=122593,360068
Review URL: https://codereview.chromium.org/252113006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270504 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/renderer_webkitplatformsupport_impl.cc')
-rw-r--r-- | content/renderer/renderer_webkitplatformsupport_impl.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/content/renderer/renderer_webkitplatformsupport_impl.cc b/content/renderer/renderer_webkitplatformsupport_impl.cc index a2d212b..74f201b 100644 --- a/content/renderer/renderer_webkitplatformsupport_impl.cc +++ b/content/renderer/renderer_webkitplatformsupport_impl.cc @@ -37,6 +37,7 @@ #include "content/public/common/content_switches.h" #include "content/public/common/webplugininfo.h" #include "content/public/renderer/content_renderer_client.h" +#include "content/renderer/battery_status/battery_status_dispatcher.h" #include "content/renderer/device_sensors/device_motion_event_pump.h" #include "content/renderer/device_sensors/device_orientation_event_pump.h" #include "content/renderer/dom_storage/webstoragenamespace_impl.h" @@ -60,6 +61,7 @@ #include "media/filters/stream_parser_factory.h" #include "net/base/mime_util.h" #include "net/base/net_util.h" +#include "third_party/WebKit/public/platform/WebBatteryStatusListener.h" #include "third_party/WebKit/public/platform/WebBlobRegistry.h" #include "third_party/WebKit/public/platform/WebDeviceMotionListener.h" #include "third_party/WebKit/public/platform/WebDeviceOrientationListener.h" @@ -1181,4 +1183,15 @@ void RendererWebKitPlatformSupportImpl::queryStorageUsageAndQuota( QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); } +//------------------------------------------------------------------------------ + +void RendererWebKitPlatformSupportImpl::setBatteryStatusListener( + blink::WebBatteryStatusListener* listener) { + if (!battery_status_dispatcher_) { + battery_status_dispatcher_.reset( + new BatteryStatusDispatcher(RenderThreadImpl::current())); + } + battery_status_dispatcher_->SetListener(listener); +} + } // namespace content |