Update FakeUid to match BatteryStats.Uid.

Bug: 66953194
Test: N/A
Change-Id: Ibb4c6be68d1ea2c64f7da7bc0b39d7142ac8ce9a
This commit is contained in:
Sudheer Shanka
2017-10-25 16:43:31 -07:00
parent 74a91ca49e
commit c8b61e6612

View File

@@ -361,4 +361,14 @@ public class FakeUid extends Uid {
public long[] getScreenOffCpuFreqTimes(int which) { public long[] getScreenOffCpuFreqTimes(int which) {
return null; return null;
} }
@Override
public long[] getCpuFreqTimes(int procState, int which) {
return null;
}
@Override
public long[] getScreenOffCpuFreqTimes(int procState, int which) {
return null;
}
} }