OSDN Git Service

batteryservice: remove BatteryProperties fields not sent to BatteryService
authorTodd Poynor <toddpoynor@google.com>
Fri, 4 Oct 2013 21:03:27 +0000 (14:03 -0700)
committerTodd Poynor <toddpoynor@google.com>
Tue, 22 Oct 2013 23:18:36 +0000 (23:18 +0000)
Change-Id: I1116ebf0e21117fd37df7bfc41cb8ebaf9361faa

include/batteryservice/BatteryService.h
services/batteryservice/BatteryProperties.cpp

index a2530b6..689a7e6 100644 (file)
@@ -59,8 +59,6 @@ struct BatteryProperties {
     bool batteryPresent;
     int batteryLevel;
     int batteryVoltage;
-    int batteryCurrentNow;
-    int batteryChargeCounter;
     int batteryTemperature;
     String8 batteryTechnology;
 
index e4a42ed..ab636a9 100644 (file)
@@ -38,8 +38,6 @@ status_t BatteryProperties::readFromParcel(Parcel* p) {
     batteryPresent = p->readInt32() == 1 ? true : false;
     batteryLevel = p->readInt32();
     batteryVoltage = p->readInt32();
-    batteryCurrentNow = p->readInt32();
-    batteryChargeCounter = p->readInt32();
     batteryTemperature = p->readInt32();
     batteryTechnology = String8((p->readString16()).string());
     return OK;
@@ -54,8 +52,6 @@ status_t BatteryProperties::writeToParcel(Parcel* p) const {
     p->writeInt32(batteryPresent ? 1 : 0);
     p->writeInt32(batteryLevel);
     p->writeInt32(batteryVoltage);
-    p->writeInt32(batteryCurrentNow);
-    p->writeInt32(batteryChargeCounter);
     p->writeInt32(batteryTemperature);
     p->writeString16(String16(batteryTechnology));
     return OK;