commit | 84dfa9f104928506ef2887c1533e4325b8108df2 | [log] [tgz] |
---|---|---|
author | Chalard Jean <jchalard@google.com> | Mon Jan 30 11:23:20 2023 +0900 |
committer | Chalard Jean <jchalard@google.com> | Thu Sep 28 21:37:32 2023 +0900 |
tree | f24b836063923a62562f58fd47b77298e4526f43 | |
parent | a10ae005dfe8dac2a32cfc06f5ab1e675943702d [diff] [blame] |
Introduce a flag for using the carrier service changed callbacks. Test: CarrierPrivilegeAuthenticatorTest Change-Id: Ia28c6abca67866c1de953cb61953a0d2882cd7e2
diff --git a/service/src/com/android/server/ConnectivityService.java b/service/src/com/android/server/ConnectivityService.java index f888da5..b3f0b2c 100755 --- a/service/src/com/android/server/ConnectivityService.java +++ b/service/src/com/android/server/ConnectivityService.java
@@ -1427,7 +1427,7 @@ public CarrierPrivilegeAuthenticator makeCarrierPrivilegeAuthenticator( @NonNull final Context context, @NonNull final TelephonyManager tm) { if (isAtLeastT()) { - return new CarrierPrivilegeAuthenticator(context, tm); + return new CarrierPrivilegeAuthenticator(context, this, tm); } else { return null; }