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

Unified Diff: chrome/browser/sync/test/integration/performance/sync_timing_helper.cc

Issue 2767893002: Remove ScopedVector from chrome/browser/. (Closed)
Patch Set: Created 3 years, 9 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
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;
}

Powered by Google App Engine
This is Rietveld 408576698