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

Unified Diff: components/autofill/core/browser/webdata/autofill_table.cc

Issue 2619423002: [Payments] Preserve Wallet's card to billing address link after sync. (Closed)
Patch Set: Fixed comment Created 3 years, 11 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/webdata/autofill_table.cc
diff --git a/components/autofill/core/browser/webdata/autofill_table.cc b/components/autofill/core/browser/webdata/autofill_table.cc
index 3c1d9b3cb86371c66cce68c029a4771b60515239..8d03d935dbc59df6ff003c6f21fc262c1f603ec5 100644
--- a/components/autofill/core/browser/webdata/autofill_table.cc
+++ b/components/autofill/core/browser/webdata/autofill_table.cc
@@ -942,7 +942,7 @@ bool AutofillTable::GetAutofillProfiles(
}
bool AutofillTable::GetServerProfiles(
- std::vector<std::unique_ptr<AutofillProfile>>* profiles) {
+ std::vector<std::unique_ptr<AutofillProfile>>* profiles) const {
profiles->clear();
sql::Statement s(db_->GetUniqueStatement(
@@ -1205,7 +1205,7 @@ bool AutofillTable::GetCreditCards(
}
bool AutofillTable::GetServerCreditCards(
- std::vector<std::unique_ptr<CreditCard>>* credit_cards) {
+ std::vector<std::unique_ptr<CreditCard>>* credit_cards) const {
credit_cards->clear();
sql::Statement s(db_->GetUniqueStatement(

Powered by Google App Engine
This is Rietveld 408576698