Chromium Code Reviews| 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 f56cc87a62dac9ce44106d1d9b51046609908348..4ec3e04f4c8e1770886fefa3693784f60c7583f5 100644 |
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
| @@ -1604,8 +1604,6 @@ bool AutofillDialogControllerImpl::FieldControlsIcons( |
| return type == CREDIT_CARD_NUMBER; |
| } |
| -// TODO(estade): Replace all the error messages here with more helpful and |
| -// translateable ones. TODO(groby): Also add tests. |
|
Evan Stade
2013/10/01 01:53:00
do we have sufficient tests?
Dan Beam
2013/10/01 02:00:41
we have quite a few for InputsAreValid(), but I'll
|
| string16 AutofillDialogControllerImpl::InputValidityMessage( |
| DialogSection section, |
| ServerFieldType type, |
| @@ -1711,8 +1709,6 @@ string16 AutofillDialogControllerImpl::InputValidityMessage( |
| base::string16(); |
| } |
| -// TODO(estade): Replace all the error messages here with more helpful and |
| -// translateable ones. TODO(groby): Also add tests. |
| ValidityData AutofillDialogControllerImpl::InputsAreValid( |
| DialogSection section, |
| const DetailOutputMap& inputs, |
| @@ -2179,7 +2175,7 @@ void AutofillDialogControllerImpl::OnDidAcceptLegalDocuments() { |
| void AutofillDialogControllerImpl::OnDidAuthenticateInstrument(bool success) { |
| DCHECK(is_submitting_ && IsPayingWithWallet()); |
| - // TODO(dbeam): use the returned full wallet. b/8332329 |
| + // TODO(dbeam): use the returned full wallet. http://crbug.com/224992 |
| if (success) { |
| GetFullWallet(); |
| } else { |
| @@ -3134,7 +3130,7 @@ void AutofillDialogControllerImpl::HandleSaveOrUpdateRequiredActions( |
| const std::vector<wallet::RequiredAction>& required_actions) { |
| DCHECK(!required_actions.empty()); |
| - // TODO(ahutter): Invesitigate if we need to support more generic actions on |
| + // TODO(ahutter): Investigate if we need to support more generic actions on |
| // this call such as GAIA_AUTH. See crbug.com/243457. |
| for (std::vector<wallet::RequiredAction>::const_iterator iter = |
| required_actions.begin(); |