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); |
} |