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

Unified Diff: components/autofill/core/browser/autofill_manager.cc

Issue 2349033002: Include addresses with the getdetailsforsavecard Payments RPC. (Closed)
Patch Set: Eliminate static initializers, update a comment. Created 4 years, 3 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/core/browser/autofill_manager.cc
diff --git a/components/autofill/core/browser/autofill_manager.cc b/components/autofill/core/browser/autofill_manager.cc
index adca0fac3c806be5cdd0a2ecc0e8d185436068ed..ffbfffe682936fbdc255845937bd1c4cddff91d8 100644
--- a/components/autofill/core/browser/autofill_manager.cc
+++ b/components/autofill/core/browser/autofill_manager.cc
@@ -12,6 +12,7 @@
#include <map>
#include <set>
#include <utility>
+#include <vector>
#include "base/bind.h"
#include "base/command_line.h"
@@ -1129,7 +1130,7 @@ void AutofillManager::ImportFormData(const FormStructure& submitted_form) {
}
// All required data is available, start the upload process.
- payments_client_->GetUploadDetails(app_locale_);
+ payments_client_->GetUploadDetails(upload_request_.profiles, app_locale_);
}
}

Powered by Google App Engine
This is Rietveld 408576698