diff options
author | Lorenzo Colitti <lorenzo@google.com> | 2019-05-18 01:06:27 +0900 |
---|---|---|
committer | Lorenzo Colitti <lorenzo@google.com> | 2019-05-20 16:43:23 +0900 |
commit | 43e4dc3db27fc3dac79f56ec213d71161fe6905a (patch) | |
tree | ac339b8528e1037938f321718136bc3bc94fbbc0 /src | |
parent | 0145abc3b20e3bcc5f00b0d8ac8d884da4b76f20 (diff) |
Add a factoryReset method to IIpMemoryStore, and freeze api.
Currently unimplemented. Implementation will be in a future CL.
Test: m
Bug: 128499160
Change-Id: Ia11ecd33f528d01667b1baeb8671b7213a31eef5
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/server/connectivity/ipmemorystore/IpMemoryStoreService.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/server/connectivity/ipmemorystore/IpMemoryStoreService.java b/src/com/android/server/connectivity/ipmemorystore/IpMemoryStoreService.java index 6a6bf83..8312dfe 100644 --- a/src/com/android/server/connectivity/ipmemorystore/IpMemoryStoreService.java +++ b/src/com/android/server/connectivity/ipmemorystore/IpMemoryStoreService.java @@ -410,6 +410,10 @@ public class IpMemoryStoreService extends IIpMemoryStore.Stub { }); } + @Override + public void factoryReset() { + } + /** Get db size threshold. */ @VisibleForTesting protected int getDbSizeThreshold() { |