| Index: components/autofill/content/browser/autocheckout_request_manager.cc
|
| diff --git a/components/autofill/content/browser/autocheckout_request_manager.cc b/components/autofill/content/browser/autocheckout_request_manager.cc
|
| index ad661a3213da749b9b67520d9c5d03b7646d7e00..eaf0c164fd8ba27f3fa49704b126ce979123a636 100644
|
| --- a/components/autofill/content/browser/autocheckout_request_manager.cc
|
| +++ b/components/autofill/content/browser/autocheckout_request_manager.cc
|
| @@ -83,21 +83,8 @@ void AutocheckoutRequestManager::OnDidGetWalletItems(
|
| NOTREACHED();
|
| }
|
|
|
| -void AutocheckoutRequestManager::OnDidSaveAddress(
|
| - const std::string& address_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) {
|
| - NOTREACHED();
|
| -}
|
| -
|
| -void AutocheckoutRequestManager::OnDidSaveInstrument(
|
| - const std::string& instrument_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) {
|
| - NOTREACHED();
|
| -}
|
|
|
| -void AutocheckoutRequestManager::OnDidSaveInstrumentAndAddress(
|
| +void AutocheckoutRequestManager::OnDidSaveToWallet(
|
| const std::string& instrument_id,
|
| const std::string& address_id,
|
| const std::vector<wallet::RequiredAction>& required_actions,
|
| @@ -105,20 +92,6 @@ void AutocheckoutRequestManager::OnDidSaveInstrumentAndAddress(
|
| NOTREACHED();
|
| }
|
|
|
| -void AutocheckoutRequestManager::OnDidUpdateAddress(
|
| - const std::string& address_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) {
|
| - NOTREACHED();
|
| -}
|
| -
|
| -void AutocheckoutRequestManager::OnDidUpdateInstrument(
|
| - const std::string& instrument_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) {
|
| - NOTREACHED();
|
| -}
|
| -
|
| void AutocheckoutRequestManager::OnWalletError(
|
| wallet::WalletClient::ErrorType error_type) {
|
| // Nothing to be done. |error_type| is logged by |metric_logger_|.
|
|
|