| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| index fcfe3c47eff386a66e100d3f3172f47c129be84c..ab14cd821838cbe74a18143b0830bd09de8f3d1f 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
|
| @@ -729,10 +729,8 @@ bool AutofillDialogControllerImpl::ShouldShowSpinner() const {
|
| SignedInState() == REQUIRES_PASSIVE_SIGN_IN;
|
| }
|
|
|
| -// TODO(estade): Only show account chooser for Wallet in the US.
|
| -// http://crbug.com/323641
|
| bool AutofillDialogControllerImpl::ShouldShowAccountChooser() const {
|
| - return !ShouldShowSpinner();
|
| + return !ShouldShowSpinner() && GetManager()->IsCountryOfInterest("US");
|
| }
|
|
|
| bool AutofillDialogControllerImpl::ShouldShowSignInWebView() const {
|
|
|