- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
31 lines
838 B
Java
31 lines
838 B
Java
package com.google.android.gms.internal.auth;
|
|
|
|
import com.google.android.gms.auth.api.proxy.ProxyApi;
|
|
import com.google.android.gms.auth.api.proxy.ProxyResponse;
|
|
import com.google.android.gms.common.api.Status;
|
|
|
|
/* loaded from: classes3.dex */
|
|
final class zzbu implements ProxyApi.ProxyResult {
|
|
private final Status zza;
|
|
private ProxyResponse zzb;
|
|
|
|
public zzbu(ProxyResponse proxyResponse) {
|
|
this.zzb = proxyResponse;
|
|
this.zza = Status.RESULT_SUCCESS;
|
|
}
|
|
|
|
public zzbu(Status status) {
|
|
this.zza = status;
|
|
}
|
|
|
|
@Override // com.google.android.gms.auth.api.proxy.ProxyApi.ProxyResult
|
|
public final ProxyResponse getResponse() {
|
|
return this.zzb;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.api.Result
|
|
public final Status getStatus() {
|
|
return this.zza;
|
|
}
|
|
}
|