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 9c6a77652347e591f40428ff944266e0150188e6..d0ede1aac21dcab35fe16f397f5951d6809091de 100644 |
--- a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc |
+++ b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc |
@@ -191,8 +191,8 @@ TEST_F(AutofillDataTypeControllerTest, AbortWhileWDSStarting) { |
WillRepeatedly(Return(personal_data_manager_.get())); |
EXPECT_CALL(*(personal_data_manager_.get()), IsDataLoaded()). |
WillRepeatedly(Return(true)); |
- scoped_refptr<WebDataServiceFake> web_data_service_not_loaded = |
- new WebDataServiceFake(false); |
+ scoped_refptr<WebDataServiceFake> web_data_service_not_loaded( |
+ new WebDataServiceFake(false)); |
EXPECT_CALL(profile_, GetWebDataService(_)). |
WillOnce(Return(web_data_service_not_loaded.get())); |
autofill_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run)); |