| Index: chrome/browser/autofill/autofill_external_delegate_unittest.cc
|
| diff --git a/chrome/browser/autofill/autofill_external_delegate_unittest.cc b/chrome/browser/autofill/autofill_external_delegate_unittest.cc
|
| index 7c6131a7f8a5aa9a53824dee511c7d75eaad8f1d..ce23a585afa1c901bc81cd0096747f6882e34f77 100644
|
| --- a/chrome/browser/autofill/autofill_external_delegate_unittest.cc
|
| +++ b/chrome/browser/autofill/autofill_external_delegate_unittest.cc
|
| @@ -57,7 +57,9 @@ class MockAutofillExternalDelegate : public TestAutofillExternalDelegate {
|
| class MockAutofillManager : public AutofillManager {
|
| public:
|
| explicit MockAutofillManager(TabContentsWrapper* tab_contents)
|
| - : AutofillManager(tab_contents) {}
|
| + // Force to use the constructor designated for unit test, but we don't
|
| + // really need personal_data in this test so we pass a NULL pointer.
|
| + : AutofillManager(tab_contents, NULL) {}
|
|
|
| MOCK_METHOD4(OnFillAutofillFormData,
|
| void(int query_id,
|
|
|