34 lines
854 B
Java
34 lines
854 B
Java
package com.google.firebase.iid;
|
|
|
|
import android.os.IBinder;
|
|
import android.os.Message;
|
|
import android.os.Parcel;
|
|
import android.os.RemoteException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class zzw implements zzv {
|
|
private final IBinder a;
|
|
|
|
zzw(IBinder iBinder) {
|
|
this.a = iBinder;
|
|
}
|
|
|
|
@Override // com.google.firebase.iid.zzv
|
|
public final void a(Message message) throws RemoteException {
|
|
Parcel obtain = Parcel.obtain();
|
|
obtain.writeInterfaceToken("com.google.android.gms.iid.IMessengerCompat");
|
|
obtain.writeInt(1);
|
|
message.writeToParcel(obtain, 0);
|
|
try {
|
|
this.a.transact(1, obtain, null, 1);
|
|
} finally {
|
|
obtain.recycle();
|
|
}
|
|
}
|
|
|
|
@Override // android.os.IInterface
|
|
public final IBinder asBinder() {
|
|
return this.a;
|
|
}
|
|
}
|