resolved conflicts for merge of 368fdba4
to master
Change-Id: I42b7b433c86a71a5da5db67109f056a280077c9d
This commit is contained in:
@ -260,6 +260,7 @@ class TelephonyRegistry extends ITelephonyRegistry.Stub {
|
||||
if (!checkNotifyPermission("notifyServiceState()")){
|
||||
return;
|
||||
}
|
||||
Slog.i(TAG, "notifyServiceState: " + state);
|
||||
synchronized (mRecords) {
|
||||
mServiceState = state;
|
||||
for (Record r : mRecords) {
|
||||
@ -363,6 +364,9 @@ class TelephonyRegistry extends ITelephonyRegistry.Stub {
|
||||
if (!checkNotifyPermission("notifyDataConnection()" )) {
|
||||
return;
|
||||
}
|
||||
Slog.i(TAG, "notifyDataConnection: state=" + state + " isDataConnectivityPossible="
|
||||
+ isDataConnectivityPossible + " reason=" + reason
|
||||
+ " interfaceName=" + interfaceName + " networkType=" + networkType);
|
||||
synchronized (mRecords) {
|
||||
boolean modified = false;
|
||||
if (state == TelephonyManager.DATA_CONNECTED) {
|
||||
|
Reference in New Issue
Block a user