| Index: chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
|
| index 01deb740fc7d44c8c79855152028b1a0c91ba58c..a4e854ee1ee0bbd915400d807fc0776906d81d84 100644
|
| --- a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
|
| +++ b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
|
| @@ -87,13 +87,14 @@ class AutofillDataTypeControllerTest : public testing::Test {
|
| db_thread_(BrowserThread::DB) {}
|
|
|
| virtual void SetUp() {
|
| + EXPECT_CALL(profile_, GetProfileSyncService()).WillRepeatedly(
|
| + Return(&service_));
|
| db_thread_.Start();
|
| web_data_service_ = new WebDataServiceFake(true);
|
| personal_data_manager_ = new PersonalDataManagerMock();
|
| autofill_dtc_ =
|
| new AutofillDataTypeController(&profile_sync_factory_,
|
| - &profile_,
|
| - &service_);
|
| + &profile_);
|
| }
|
|
|
| virtual void TearDown() {
|
|
|