31 lines
851 B
Java
31 lines
851 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: classes2.dex */
|
||
|
final class zzaw implements ProxyApi.ProxyResult {
|
||
|
private Status mStatus;
|
||
|
private ProxyResponse zzch;
|
||
|
|
||
|
public zzaw(ProxyResponse proxyResponse) {
|
||
|
this.zzch = proxyResponse;
|
||
|
this.mStatus = Status.RESULT_SUCCESS;
|
||
|
}
|
||
|
|
||
|
public zzaw(Status status) {
|
||
|
this.mStatus = status;
|
||
|
}
|
||
|
|
||
|
@Override // com.google.android.gms.common.api.Result
|
||
|
public final Status getStatus() {
|
||
|
return this.mStatus;
|
||
|
}
|
||
|
|
||
|
@Override // com.google.android.gms.auth.api.proxy.ProxyApi.ProxyResult
|
||
|
public final ProxyResponse getResponse() {
|
||
|
return this.zzch;
|
||
|
}
|
||
|
}
|