diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-23 05:35:15 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-23 05:35:15 +0000 |
commit | d5cf9b75ce66abeb7bd1e897b0243ffbb9f93b9d (patch) | |
tree | b608c3d9dccbebd8605132d236afed71edd150f7 /chrome/browser/sync/profile_sync_service_autofill_unittest.cc | |
parent | b871f061ecc7b3074f7f04c8b1406178a82fc7bd (diff) | |
download | chromium_src-d5cf9b75ce66abeb7bd1e897b0243ffbb9f93b9d.zip chromium_src-d5cf9b75ce66abeb7bd1e897b0243ffbb9f93b9d.tar.gz chromium_src-d5cf9b75ce66abeb7bd1e897b0243ffbb9f93b9d.tar.bz2 |
Remove a deprecated method from AutofillTable.
BUG=240595
TEST=code compiles
Review URL: https://chromiumcodereview.appspot.com/14706009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201710 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/profile_sync_service_autofill_unittest.cc')
-rw-r--r-- | chrome/browser/sync/profile_sync_service_autofill_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc index 9bfa1a1..383c25f 100644 --- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc +++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc @@ -125,7 +125,7 @@ class AutofillTableMock : public AutofillTable { bool(const std::vector<AutofillEntry>&)); // NOLINT MOCK_METHOD1(GetAutofillProfiles, bool(std::vector<AutofillProfile*>*)); // NOLINT - MOCK_METHOD1(UpdateAutofillProfileMulti, + MOCK_METHOD1(UpdateAutofillProfile, bool(const AutofillProfile&)); // NOLINT MOCK_METHOD1(AddAutofillProfile, bool(const AutofillProfile&)); // NOLINT @@ -1074,7 +1074,7 @@ TEST_F(ProfileSyncServiceAutofillTest, HasNativeHasSyncMergeProfile) { AddAutofillHelper<AutofillProfile> add_autofill(this, sync_profiles); EXPECT_CALL(autofill_table_, - UpdateAutofillProfileMulti(MatchProfiles(sync_profile))). + UpdateAutofillProfile(MatchProfiles(sync_profile))). WillOnce(Return(true)); EXPECT_CALL(*personal_data_manager_, Refresh()); StartSyncService(add_autofill.callback(), false, syncer::AUTOFILL_PROFILE); |