Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: components/autofill/content/browser/autocheckout_request_manager.cc

Issue 17970003: New encryption/escrow endpoints for Wallet (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dane's review Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_|.

Powered by Google App Engine
This is Rietveld 408576698