| Index: chrome/browser/metrics/variations/variations_service_unittest.cc
|
| diff --git a/chrome/browser/metrics/variations/variations_service_unittest.cc b/chrome/browser/metrics/variations/variations_service_unittest.cc
|
| index 2137be037c432d1065de264643b7e9755e2cb47e..de4794431ac2fa6b0bd0888ef705033bda126012 100644
|
| --- a/chrome/browser/metrics/variations/variations_service_unittest.cc
|
| +++ b/chrome/browser/metrics/variations/variations_service_unittest.cc
|
| @@ -340,7 +340,7 @@ TEST(VariationsServiceTest, IsStudyExpired) {
|
| TEST(VariationsServiceTest, LoadSeed) {
|
| TestingPrefServiceSimple pref_service;
|
|
|
| - VariationsService::RegisterPrefs(&pref_service);
|
| + VariationsService::RegisterPrefs(pref_service.registry());
|
|
|
| // Store good seed data to test if loading from prefs works.
|
| TrialsSeed seed = CreateTestSeed();
|
| @@ -380,7 +380,7 @@ TEST(VariationsServiceTest, LoadSeed) {
|
| TEST(VariationsServiceTest, StoreSeed) {
|
| TestingPrefServiceSimple pref_service;
|
|
|
| - VariationsService::RegisterPrefs(&pref_service);
|
| + VariationsService::RegisterPrefs(pref_service.registry());
|
| const base::Time now = base::Time::Now();
|
|
|
| TrialsSeed seed = CreateTestSeed();
|
|
|