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

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

Issue 2767893002: Remove ScopedVector from chrome/browser/. (Closed)
Patch Set: Address comments from zea@ 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/passwords_sync_perf_test.cc
diff --git a/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
index c6104b1109e02ac851eab8ba6716a5b684f7e637..b2a05143a403fefd0bc4878d2a7e95fe30d735a4 100644
--- a/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
+++ b/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
@@ -85,19 +85,19 @@ IN_PROC_BROWSER_TEST_F(PasswordsSyncPerfTest, MAYBE_P0) {
// TCM ID - 7367749.
AddLogins(0, kNumPasswords);
- base::TimeDelta dt = TimeUntilQuiescence(clients());
+ base::TimeDelta dt = TimeUntilQuiescence(GetSyncClients());
ASSERT_EQ(kNumPasswords, GetPasswordCount(1));
PrintResult("passwords", "add_passwords", dt);
// TCM ID - 7365093.
UpdateLogins(0);
- dt = TimeUntilQuiescence(clients());
+ dt = TimeUntilQuiescence(GetSyncClients());
ASSERT_EQ(kNumPasswords, GetPasswordCount(1));
PrintResult("passwords", "update_passwords", dt);
// TCM ID - 7557852
RemoveLogins(0);
- dt = TimeUntilQuiescence(clients());
+ dt = TimeUntilQuiescence(GetSyncClients());
ASSERT_EQ(0, GetPasswordCount(1));
PrintResult("passwords", "delete_passwords", dt);
}

Powered by Google App Engine
This is Rietveld 408576698