| Index: chrome/browser/autofill/autofill_merge_unittest.cc
|
| diff --git a/chrome/browser/autofill/autofill_merge_unittest.cc b/chrome/browser/autofill/autofill_merge_unittest.cc
|
| index 6541e2411e5b245825748cf2e1352fc3130a344a..e754a34a3199221b61e090009806248b3ca1d1dd 100644
|
| --- a/chrome/browser/autofill/autofill_merge_unittest.cc
|
| +++ b/chrome/browser/autofill/autofill_merge_unittest.cc
|
| @@ -75,7 +75,7 @@ class PersonalDataManagerMock : public PersonalDataManager {
|
|
|
| // PersonalDataManager:
|
| virtual void SaveImportedProfile(const AutofillProfile& profile) OVERRIDE;
|
| - virtual const std::vector<AutofillProfile*>& web_profiles() OVERRIDE;
|
| + virtual const std::vector<AutofillProfile*>& web_profiles() const OVERRIDE;
|
|
|
| private:
|
| ScopedVector<AutofillProfile> profiles_;
|
| @@ -100,7 +100,8 @@ void PersonalDataManagerMock::SaveImportedProfile(
|
| profiles_.push_back(new AutofillProfile(profile));
|
| }
|
|
|
| -const std::vector<AutofillProfile*>& PersonalDataManagerMock::web_profiles() {
|
| +const std::vector<AutofillProfile*>& PersonalDataManagerMock::web_profiles()
|
| + const {
|
| return profiles_.get();
|
| }
|
|
|
|
|