Index: chrome/browser/autofill/autocomplete_history_manager_unittest.cc |
diff --git a/chrome/browser/autofill/autocomplete_history_manager_unittest.cc b/chrome/browser/autofill/autocomplete_history_manager_unittest.cc |
index 8709420ced0836b4ff2d4bc271676ef9c567f049..9fdc46aaaf71b0059ca4c0215c4882f3f1b64937 100644 |
--- a/chrome/browser/autofill/autocomplete_history_manager_unittest.cc |
+++ b/chrome/browser/autofill/autocomplete_history_manager_unittest.cc |
@@ -76,7 +76,7 @@ TEST_F(AutocompleteHistoryManagerTest, CreditCardNumberValue) { |
valid_cc.form_control_type = "text"; |
form.fields.push_back(valid_cc); |
- EXPECT_CALL(*web_data_service_, AddFormFields(_)).Times(0); |
+ EXPECT_CALL(*web_data_service_.get(), AddFormFields(_)).Times(0); |
autocomplete_manager_->OnFormSubmitted(form); |
} |
@@ -119,7 +119,7 @@ TEST_F(AutocompleteHistoryManagerTest, SSNValue) { |
ssn.form_control_type = "text"; |
form.fields.push_back(ssn); |
- EXPECT_CALL(*web_data_service_, AddFormFields(_)).Times(0); |
+ EXPECT_CALL(*web_data_service_.get(), AddFormFields(_)).Times(0); |
autocomplete_manager_->OnFormSubmitted(form); |
} |