Merge "AddRestrictCause"
This commit is contained in:
@@ -545,7 +545,8 @@ public final class ImsCallProfile implements Parcelable {
|
||||
+ ", emergencyUrns=" + mEmergencyUrns
|
||||
+ ", emergencyCallRouting=" + mEmergencyCallRouting
|
||||
+ ", emergencyCallTesting=" + mEmergencyCallTesting
|
||||
+ ", hasKnownUserIntentEmergency=" + mHasKnownUserIntentEmergency + " }";
|
||||
+ ", hasKnownUserIntentEmergency=" + mHasKnownUserIntentEmergency
|
||||
+ ", mRestrictCause=" + mRestrictCause + " }";
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -565,6 +566,7 @@ public final class ImsCallProfile implements Parcelable {
|
||||
out.writeInt(mEmergencyCallRouting);
|
||||
out.writeBoolean(mEmergencyCallTesting);
|
||||
out.writeBoolean(mHasKnownUserIntentEmergency);
|
||||
out.writeInt(mRestrictCause);
|
||||
}
|
||||
|
||||
private void readFromParcel(Parcel in) {
|
||||
@@ -577,6 +579,7 @@ public final class ImsCallProfile implements Parcelable {
|
||||
mEmergencyCallRouting = in.readInt();
|
||||
mEmergencyCallTesting = in.readBoolean();
|
||||
mHasKnownUserIntentEmergency = in.readBoolean();
|
||||
mRestrictCause = in.readInt();
|
||||
}
|
||||
|
||||
public static final Creator<ImsCallProfile> CREATOR = new Creator<ImsCallProfile>() {
|
||||
|
||||
Reference in New Issue
Block a user