Initial version -- added millennium read funcionality
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
package com.google.android.gms.common.moduleinstall;
|
||||
|
||||
import android.app.PendingIntent;
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class ModuleInstallIntentResponse extends AbstractSafeParcelable {
|
||||
public static final Parcelable.Creator<ModuleInstallIntentResponse> CREATOR = new zab();
|
||||
private final PendingIntent zaa;
|
||||
|
||||
public ModuleInstallIntentResponse(PendingIntent pendingIntent) {
|
||||
this.zaa = pendingIntent;
|
||||
}
|
||||
|
||||
public PendingIntent getPendingIntent() {
|
||||
return this.zaa;
|
||||
}
|
||||
|
||||
@Override // android.os.Parcelable
|
||||
public void writeToParcel(Parcel parcel, int i) {
|
||||
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||||
SafeParcelWriter.writeParcelable(parcel, 1, getPendingIntent(), i, false);
|
||||
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user