diff options
author | Robert Greenwalt <rgreenwalt@google.com> | 2010-12-06 16:51:32 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-12-06 16:51:32 -0800 |
commit | 6dcc906c4518d52321fd3ea2d3b8f345844ba78c (patch) | |
tree | 8d8c1baac0801cc42d5f3fa4fbe58c86af2e141f /services | |
parent | e01af4dea3741e3e63be35abb227a795da909324 (diff) | |
parent | a2e13392412d5094e49ea0053599477401d1a67e (diff) | |
download | frameworks_base-6dcc906c4518d52321fd3ea2d3b8f345844ba78c.zip frameworks_base-6dcc906c4518d52321fd3ea2d3b8f345844ba78c.tar.gz frameworks_base-6dcc906c4518d52321fd3ea2d3b8f345844ba78c.tar.bz2 |
Merge "Make Proxy change broadcast sticky"
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/ConnectivityService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/ConnectivityService.java b/services/java/com/android/server/ConnectivityService.java index 43c857a..f1fce3e 100644 --- a/services/java/com/android/server/ConnectivityService.java +++ b/services/java/com/android/server/ConnectivityService.java @@ -2163,7 +2163,7 @@ public class ConnectivityService extends IConnectivityManager.Stub { Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION); intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING); intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy); - mContext.sendBroadcast(intent); + mContext.sendStickyBroadcast(intent); } private static class SettingsObserver extends ContentObserver { |