diff options
author | Todd Poynor <toddpoynor@google.com> | 2014-05-20 13:54:40 -0700 |
---|---|---|
committer | Todd Poynor <toddpoynor@google.com> | 2014-05-20 16:26:48 -0700 |
commit | e14b37eb07b394fef05da5ee09dc6d33e3a25711 (patch) | |
tree | 43d8cc8e73f7d04f566b766fe88461edb7672c87 /healthd/healthd.h | |
parent | b65208d1a98c4cc6b4fbae302f7718f056e2fadd (diff) | |
download | core-e14b37eb07b394fef05da5ee09dc6d33e3a25711.tar.gz core-e14b37eb07b394fef05da5ee09dc6d33e3a25711.tar.bz2 core-e14b37eb07b394fef05da5ee09dc6d33e3a25711.zip |
healthd: Add hooks for ENERGY_COUNTER property
Bug: 10118565
Change-Id: Ibabae2a78a600ae37ce9b91da0f5980ee94b05c2
Diffstat (limited to 'healthd/healthd.h')
-rw-r--r-- | healthd/healthd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/healthd/healthd.h b/healthd/healthd.h index 23a54bf33..972e728d2 100644 --- a/healthd/healthd.h +++ b/healthd/healthd.h @@ -18,6 +18,7 @@ #define _HEALTHD_H_ #include <batteryservice/BatteryService.h> +#include <sys/types.h> #include <utils/Errors.h> #include <utils/String8.h> @@ -64,6 +65,8 @@ struct healthd_config { android::String8 batteryCurrentNowPath; android::String8 batteryCurrentAvgPath; android::String8 batteryChargeCounterPath; + + int (*energyCounter)(int64_t *); }; // Global helper functions |