| Index: chrome/browser/sync/test/integration/autofill_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/autofill_helper.cc b/chrome/browser/sync/test/integration/autofill_helper.cc
|
| index ed4adfdbbc0601758861310ff3c1c073a50ab1e2..e848a171de5979312901930dbe272587c099e355 100644
|
| --- a/chrome/browser/sync/test/integration/autofill_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/autofill_helper.cc
|
| @@ -241,7 +241,7 @@ void SetProfiles(int profile, std::vector<AutofillProfile>* autofill_profiles) {
|
| PersonalDataManager* pdm = GetPersonalDataManager(profile);
|
| pdm->AddObserver(&observer);
|
| pdm->SetProfiles(autofill_profiles);
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
| pdm->RemoveObserver(&observer);
|
| }
|
|
|
| @@ -252,7 +252,7 @@ void SetCreditCards(int profile, std::vector<CreditCard>* credit_cards) {
|
| PersonalDataManager* pdm = GetPersonalDataManager(profile);
|
| pdm->AddObserver(&observer);
|
| pdm->SetCreditCards(credit_cards);
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
| pdm->RemoveObserver(&observer);
|
| }
|
|
|
| @@ -297,7 +297,7 @@ const std::vector<AutofillProfile*>& GetAllProfiles(
|
| PersonalDataManager* pdm = GetPersonalDataManager(profile);
|
| pdm->AddObserver(&observer);
|
| pdm->Refresh();
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
| pdm->RemoveObserver(&observer);
|
| return pdm->web_profiles();
|
| }
|
|
|