summaryrefslogtreecommitdiffstats
path: root/service/java/com/android/server/wifi
diff options
context:
space:
mode:
authorSteven Liu <steveliu@google.com>2019-07-29 15:25:47 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-07-29 15:25:47 +0000
commited76e4a297e80a01ace2847a2674eba501ce8d72 (patch)
treef727cc4df87f34d083c3638f29f472b73329bb85 /service/java/com/android/server/wifi
parent1c65961bc213d53fbb49566bd71770fdafd22643 (diff)
parente8708791ffcb4c831e936bf6df3fafd0a3df92ba (diff)
downloadandroid_frameworks_opt_net_wifi-ed76e4a297e80a01ace2847a2674eba501ce8d72.tar.gz
android_frameworks_opt_net_wifi-ed76e4a297e80a01ace2847a2674eba501ce8d72.tar.bz2
android_frameworks_opt_net_wifi-ed76e4a297e80a01ace2847a2674eba501ce8d72.zip
Merge "notify the factory reset event to installer which have permission of NETWORK_CARRIER_PROVISIONING." into qt-r1-dev
Diffstat (limited to 'service/java/com/android/server/wifi')
-rw-r--r--service/java/com/android/server/wifi/WifiServiceImpl.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/service/java/com/android/server/wifi/WifiServiceImpl.java b/service/java/com/android/server/wifi/WifiServiceImpl.java
index f04755fd9..b25a84593 100644
--- a/service/java/com/android/server/wifi/WifiServiceImpl.java
+++ b/service/java/com/android/server/wifi/WifiServiceImpl.java
@@ -2970,9 +2970,20 @@ public class WifiServiceImpl extends BaseWifiService {
mWifiNetworkSuggestionsManager.clear();
mWifiInjector.getWifiScoreCard().clear();
});
+ notifyFactoryReset();
}
}
+ /**
+ * Notify the Factory Reset Event to application who may installed wifi configurations.
+ */
+ private void notifyFactoryReset() {
+ Intent intent = new Intent(WifiManager.WIFI_NETWORK_SETTINGS_RESET_ACTION);
+ intent.addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND);
+ mContext.sendBroadcastAsUser(intent, UserHandle.ALL,
+ android.Manifest.permission.NETWORK_CARRIER_PROVISIONING);
+ }
+
/* private methods */
static boolean logAndReturnFalse(String s) {
Log.d(TAG, s);