| Index: chrome/test/ui/ui_test_suite.cc
|
| diff --git a/chrome/test/ui/ui_test_suite.cc b/chrome/test/ui/ui_test_suite.cc
|
| index dbcc1918d37c3b4be51fd490266c2f297de23646..b74593d53654386f9edbe1e9c83b36e78fa0b021 100644
|
| --- a/chrome/test/ui/ui_test_suite.cc
|
| +++ b/chrome/test/ui/ui_test_suite.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/env_var.h"
|
| +#include "base/environment.h"
|
| #include "base/path_service.h"
|
| #include "base/process_util.h"
|
| #include "base/string_number_conversions.h"
|
| @@ -114,7 +114,7 @@ void UITestSuite::SuppressErrorDialogs() {
|
|
|
| #if defined(OS_WIN)
|
| void UITestSuite::LoadCrashService() {
|
| - scoped_ptr<base::EnvVarGetter> env(base::EnvVarGetter::Create());
|
| + scoped_ptr<base::Environment> env(base::Environment::Create());
|
| if (env->HasEnv(env_vars::kHeadless))
|
| return;
|
|
|
|
|