| Index: chrome/test/reliability/page_load_test.cc
|
| diff --git a/chrome/test/reliability/page_load_test.cc b/chrome/test/reliability/page_load_test.cc
|
| index ce333e8a9b35314561f6f4642a3d9b4910a98dad..21a70361b6bcb117600c7329d363df33b212e2e3 100644
|
| --- a/chrome/test/reliability/page_load_test.cc
|
| +++ b/chrome/test/reliability/page_load_test.cc
|
| @@ -745,7 +745,7 @@ class PageLoadTest : public UITest {
|
| // Get a PrefService whose contents correspond to the Local State file
|
| // that was saved by the app as it closed. The caller takes ownership of the
|
| // returned PrefService object.
|
| - PrefServiceSimple* GetLocalState() {
|
| + PrefService* GetLocalState() {
|
| FilePath path = user_data_dir().Append(chrome::kLocalStateFilename);
|
| PrefServiceMockBuilder builder;
|
| builder.WithUserFilePrefs(path,
|
| @@ -756,7 +756,7 @@ class PageLoadTest : public UITest {
|
| void GetStabilityMetrics(NavigationMetrics* metrics) {
|
| if (!metrics)
|
| return;
|
| - scoped_ptr<PrefServiceSimple> local_state(GetLocalState());
|
| + scoped_ptr<PrefService> local_state(GetLocalState());
|
| if (!local_state.get())
|
| return;
|
| local_state->RegisterBooleanPref(prefs::kStabilityExitedCleanly, false);
|
|
|