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

Side by Side Diff: components/autofill/browser/test_personal_data_manager.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, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/autofill/browser/test_personal_data_manager.h" 5 #include "components/autofill/browser/test_personal_data_manager.h"
6 6
7 #include "components/autofill/browser/personal_data_manager_observer.h" 7 #include "components/autofill/browser/personal_data_manager_observer.h"
8 8
9 namespace autofill { 9 namespace autofill {
10 10
(...skipping 11 matching lines...) Expand all
22 void TestPersonalDataManager::AddTestingCreditCard(CreditCard* credit_card) { 22 void TestPersonalDataManager::AddTestingCreditCard(CreditCard* credit_card) {
23 credit_cards_.push_back(credit_card); 23 credit_cards_.push_back(credit_card);
24 FOR_EACH_OBSERVER(PersonalDataManagerObserver, observers_, 24 FOR_EACH_OBSERVER(PersonalDataManagerObserver, observers_,
25 OnPersonalDataChanged()); 25 OnPersonalDataChanged());
26 } 26 }
27 27
28 const std::vector<AutofillProfile*>& TestPersonalDataManager::GetProfiles() { 28 const std::vector<AutofillProfile*>& TestPersonalDataManager::GetProfiles() {
29 return profiles_; 29 return profiles_;
30 } 30 }
31 31
32 const std::vector<CreditCard*>& TestPersonalDataManager::credit_cards() const { 32 const std::vector<CreditCard*>& TestPersonalDataManager::
Lei Zhang 2013/05/01 04:08:52 nit: I prefer this style, but if you've been doing
Dan Beam 2013/05/01 04:19:36 yeah, estade@ has been doing this consistently (th
33 GetCreditCards() const {
33 return credit_cards_; 34 return credit_cards_;
34 } 35 }
35 36
36 void TestPersonalDataManager::SaveImportedProfile( 37 void TestPersonalDataManager::SaveImportedProfile(
37 const AutofillProfile& imported_profile) { 38 const AutofillProfile& imported_profile) {
38 imported_profile_ = imported_profile; 39 imported_profile_ = imported_profile;
39 } 40 }
40 41
41 } // namespace autofill 42 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698