| Index: chrome/browser/sync/test/integration/sync_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc
|
| index 452758470796d86ea8d215c54a4777fd31d79694..3448e3d1c7930c2dca9aee3c89648212205e8e33 100644
|
| --- a/chrome/browser/sync/test/integration/sync_test.cc
|
| +++ b/chrome/browser/sync/test/integration/sync_test.cc
|
| @@ -420,6 +420,17 @@ Profile* SyncTest::GetProfile(int index) {
|
| return profiles_[index];
|
| }
|
|
|
| +std::vector<Profile*> SyncTest::GetAllProfiles() {
|
| + std::vector<Profile*> profiles;
|
| + if (use_verifier()) {
|
| + profiles.push_back(verifier());
|
| + }
|
| + for (int i = 0; i < num_clients(); ++i) {
|
| + profiles.push_back(GetProfile(i));
|
| + }
|
| + return profiles;
|
| +}
|
| +
|
| Browser* SyncTest::GetBrowser(int index) {
|
| if (browsers_.empty())
|
| LOG(FATAL) << "SetupClients() has not yet been called.";
|
|
|