Update FakeUid to implement new method defined in BatteryStats.Uid

Bug:21498425
Change-Id: I956c04d13daf985d472cc7ff2762ad74d5bb9502
This commit is contained in:
Adam Lesinski
2015-06-26 18:05:37 -07:00
parent fba915be16
commit 56594c6d61

View File

@@ -249,4 +249,9 @@ public class FakeUid extends Uid {
public long getTimeAtCpuSpeed(int step, int which) { public long getTimeAtCpuSpeed(int step, int which) {
return 0; return 0;
} }
@Override
public long getCpuPowerMaUs(int which) {
return 0;
}
} }