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

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: Rebasing again... Created 7 years, 5 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 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_|.

Powered by Google App Engine
This is Rietveld 408576698