| 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 62c0eca9ee63ab64af31c58b463c1b3a47c5e506..54b4d7606019b5551645b45a7d329dd21ed7b59c 100644
|
| --- a/components/autofill/content/browser/autocheckout_request_manager.cc
|
| +++ b/components/autofill/content/browser/autocheckout_request_manager.cc
|
| @@ -79,21 +79,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,
|
| @@ -101,20 +88,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_|.
|
|
|