| Index: chrome/test/startup/startup_test.cc
|
| diff --git a/chrome/test/startup/startup_test.cc b/chrome/test/startup/startup_test.cc
|
| index 366be92123d829dab24bf110e8aff0091bc7b48b..8369e8af0c89ffa37b1d396bb031a6414af6356d 100644
|
| --- a/chrome/test/startup/startup_test.cc
|
| +++ b/chrome/test/startup/startup_test.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/env_var.h"
|
| +#include "base/environment.h"
|
| #include "base/file_util.h"
|
| #include "base/path_service.h"
|
| #include "base/platform_thread.h"
|
| @@ -106,7 +106,7 @@ class StartupTest : public UITest {
|
|
|
| const int kNumCyclesMax = 20;
|
| int numCycles = kNumCyclesMax;
|
| - scoped_ptr<base::EnvVarGetter> env(base::EnvVarGetter::Create());
|
| + scoped_ptr<base::Environment> env(base::Environment::Create());
|
| std::string numCyclesEnv;
|
| if (env->GetEnv(env_vars::kStartupTestsNumCycles, &numCyclesEnv) &&
|
| base::StringToInt(numCyclesEnv, &numCycles)) {
|
|
|