Merge "air plane mode only send to the owner through the quick setting" into lmp-mr1-dev

This commit is contained in:
xinhe
2014-11-17 22:18:02 +00:00
committed by Android (Google) Code Review

View File

@@ -3246,7 +3246,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, enable ? 1 : 0);
Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
intent.putExtra("state", enable);
mContext.sendBroadcast(intent);
mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
} finally {
Binder.restoreCallingIdentity(ident);
}