Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Unified Diff: chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc

Issue 4192012: Convert implicit scoped_refptr constructor calls to explicit ones, part 1 (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: fix presubmit Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ssl/ssl_manager.cc ('k') | chrome/browser/sync/glue/history_model_worker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « chrome/browser/ssl/ssl_manager.cc ('k') | chrome/browser/sync/glue/history_model_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698