| Index: chrome/browser/zygote_host_linux.cc
|
| diff --git a/chrome/browser/zygote_host_linux.cc b/chrome/browser/zygote_host_linux.cc
|
| index 4d9189f4b7331bf24d7169ceb86b78ca22647f0f..4ede3330d2e348e33a99e2fbc4708463055f91a8 100644
|
| --- a/chrome/browser/zygote_host_linux.cc
|
| +++ b/chrome/browser/zygote_host_linux.cc
|
| @@ -11,7 +11,7 @@
|
|
|
| #include "base/command_line.h"
|
| #include "base/eintr_wrapper.h"
|
| -#include "base/env_var.h"
|
| +#include "base/environment.h"
|
| #include "base/linux_util.h"
|
| #include "base/logging.h"
|
| #include "base/path_service.h"
|
| @@ -40,7 +40,7 @@ static void SaveSUIDUnsafeEnvironmentVariables() {
|
| if (!saved_envvar)
|
| continue;
|
|
|
| - scoped_ptr<base::EnvVarGetter> env(base::EnvVarGetter::Create());
|
| + scoped_ptr<base::Environment> env(base::Environment::Create());
|
| std::string value;
|
| if (env->GetEnv(envvar, &value))
|
| env->SetEnv(saved_envvar, value);
|
|
|