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

Unified Diff: chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc

Issue 14564003: Make PersonalDataManager use GetCreditCards() (rather than using credit_cards_ directly) so Autofill (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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: chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc
diff --git a/chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc b/chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc
index bb92a3f71e17a2b10d9aef669e0a8fd0b9bc77fd..e0f53d73648e1cd1c10e6ffe2f24f3bebdd8e3d6 100644
--- a/chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc
+++ b/chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc
@@ -477,5 +477,5 @@ IN_PROC_BROWSER_TEST_F(TwoClientAutofillSyncTest, NoCreditCardSync) {
ASSERT_EQ(1U, GetAllProfiles(0).size());
PersonalDataManager* pdm = GetPersonalDataManager(1);
- ASSERT_EQ(0U, pdm->credit_cards().size());
+ ASSERT_EQ(0U, pdm->GetCreditCards().size());
}

Powered by Google App Engine
This is Rietveld 408576698