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

* commit 'b596bffdaa7a9abf9110ca0d1ea90bdfca47c956':
  air plane mode only send to the owner through the quick setting
This commit is contained in:
xinhe
2014-11-18 02:06:12 +00:00
committed by Android Git Automerger

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);
}