package c.a.i; import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.discord.R; import com.discord.utilities.view.text.LinkifiedTextView; import com.discord.views.CheckedSetting; /* compiled from: LayoutContactSyncToggleInfoBinding */ public final class h0 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull public final LinkifiedTextView b; @NonNull /* renamed from: c reason: collision with root package name */ public final CheckedSetting f105c; public h0(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull CheckedSetting checkedSetting) { this.a = linearLayout; this.b = linkifiedTextView; this.f105c = checkedSetting; } @NonNull public static h0 a(@NonNull View view) { int i = R.id.contact_sync_discovery_info_1; TextView textView = (TextView) view.findViewById(R.id.contact_sync_discovery_info_1); if (textView != null) { i = R.id.contact_sync_discovery_info_2; LinkifiedTextView linkifiedTextView = (LinkifiedTextView) view.findViewById(R.id.contact_sync_discovery_info_2); if (linkifiedTextView != null) { i = R.id.contact_sync_discovery_toggle; CheckedSetting checkedSetting = (CheckedSetting) view.findViewById(R.id.contact_sync_discovery_toggle); if (checkedSetting != null) { return new h0((LinearLayout) view, textView, linkifiedTextView, checkedSetting); } } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }