39 lines
1.0 KiB
Java
39 lines
1.0 KiB
Java
package o;
|
|
|
|
import android.os.IBinder;
|
|
import android.os.IInterface;
|
|
import android.os.Parcel;
|
|
import android.os.RemoteException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class xwg implements IInterface {
|
|
private final IBinder a;
|
|
private final String d = "com.google.android.play.core.appupdate.protocol.IAppUpdateService";
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public final Parcel Nb_() {
|
|
Parcel obtain = Parcel.obtain();
|
|
obtain.writeInterfaceToken(this.d);
|
|
return obtain;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public final void Nc_(int i, Parcel parcel) throws RemoteException {
|
|
try {
|
|
this.a.transact(i, parcel, null, 1);
|
|
} finally {
|
|
parcel.recycle();
|
|
}
|
|
}
|
|
|
|
@Override // android.os.IInterface
|
|
public final IBinder asBinder() {
|
|
return this.a;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public xwg(IBinder iBinder) {
|
|
this.a = iBinder;
|
|
}
|
|
}
|