Rename setUidForeground to noteUidForeground

This patch addresses API review about the naming of
NetworkStatsManager#setUidForeground and it would be
more appropriate to rename it to noteUidForeground.

Bug: 222291301
Test: atest FrameworksNetTests
Change-Id: I952762872850889609c9808aa6e3cdfc04317806
This commit is contained in:
Aaron Huang
2022-03-10 17:44:49 +08:00
parent c62c7edf66
commit e6c13a7dd0
3 changed files with 4 additions and 4 deletions

View File

@@ -1061,9 +1061,9 @@ public class NetworkStatsManager {
@RequiresPermission(anyOf = {
NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK,
android.Manifest.permission.NETWORK_STACK})
public void setUidForeground(int uid, boolean uidForeground) {
public void noteUidForeground(int uid, boolean uidForeground) {
try {
mService.setUidForeground(uid, uidForeground);
mService.noteUidForeground(uid, uidForeground);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}

View File

@@ -91,7 +91,7 @@ interface INetworkStatsService {
in INetworkStatsProvider provider);
/** Mark given UID as being in foreground for stats purposes. */
void setUidForeground(int uid, boolean uidForeground);
void noteUidForeground(int uid, boolean uidForeground);
/** Advise persistence threshold; may be overridden internally. */
void advisePersistThreshold(long thresholdBytes);