Index: components/autofill/core/browser/autofill_test_utils.cc |
diff --git a/components/autofill/core/browser/autofill_test_utils.cc b/components/autofill/core/browser/autofill_test_utils.cc |
index 081defa337a6781650b195de46a744b8207b6b3f..ebb5e53cd315352c5beb8d4803a4b193f5416a5a 100644 |
--- a/components/autofill/core/browser/autofill_test_utils.cc |
+++ b/components/autofill/core/browser/autofill_test_utils.cc |
@@ -210,8 +210,10 @@ void DisableSystemServices(PrefService* prefs) { |
// Disable auxiliary profiles for unit testing. These reach out to system |
// services on the Mac. |
- if (prefs) |
+ if (prefs) { |
prefs->SetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled, false); |
Ilya Sherman
2014/06/02 22:54:27
I think you can just replace this line, rather tha
erikchen
2014/06/03 01:34:19
Done.
|
+ prefs->SetBoolean(prefs::kAutofillUseMacAddressBook, false); |
+ } |
} |
} // namespace test |