Index: chrome/browser/sync/test/integration/performance/sync_timing_helper.cc |
diff --git a/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc b/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc |
index 6c541e03e1c28d1c4a2fce1416928558a8af0dce..e04660f2de83d8629a7ae4c18b5b9849ca714e15 100644 |
--- a/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc |
+++ b/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc |
@@ -26,9 +26,9 @@ base::TimeDelta TimeMutualSyncCycle(ProfileSyncServiceHarness* client, |
} |
base::TimeDelta TimeUntilQuiescence( |
- const std::vector<ProfileSyncServiceHarness*>& clients) { |
+ std::vector<ProfileSyncServiceHarness*> clients) { |
base::Time start = base::Time::Now(); |
- EXPECT_TRUE(ProfileSyncServiceHarness::AwaitQuiescence(clients)); |
+ EXPECT_TRUE(ProfileSyncServiceHarness::AwaitQuiescence(std::move(clients))); |
return base::Time::Now() - start; |
} |