summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/sync/test_profile_sync_service.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/sync/test_profile_sync_service.cc b/chrome/browser/sync/test_profile_sync_service.cc
index 7f6d82a..7d5be85 100644
--- a/chrome/browser/sync/test_profile_sync_service.cc
+++ b/chrome/browser/sync/test_profile_sync_service.cc
@@ -127,7 +127,9 @@ void SyncBackendHostForProfileSyncTest::ProcessMessage(
}
}
-void SyncBackendHostForProfileSyncTest::StartConfiguration(Callback0::Type*) {
+void SyncBackendHostForProfileSyncTest::StartConfiguration(
+ Callback0::Type* callback) {
+ scoped_ptr<Callback0::Type> scoped_callback(callback);
SyncBackendHost::FinishConfigureDataTypesOnFrontendLoop();
}