Index: webkit/tools/test_shell/test_shell_main.cc |
diff --git a/webkit/tools/test_shell/test_shell_main.cc b/webkit/tools/test_shell/test_shell_main.cc |
index e5bdb8526ed27eb8e9d67a776a4ae2430ae36c63..bbc55f32df8f5004238d5d8266905a7adf0b62f7 100644 |
--- a/webkit/tools/test_shell/test_shell_main.cc |
+++ b/webkit/tools/test_shell/test_shell_main.cc |
@@ -5,7 +5,7 @@ |
#include "base/at_exit.h" |
#include "base/basictypes.h" |
#include "base/command_line.h" |
-#include "base/env_var.h" |
+#include "base/environment.h" |
#include "base/event_recorder.h" |
#include "base/file_path.h" |
#include "base/file_util.h" |
@@ -92,7 +92,7 @@ int main(int argc, char* argv[]) { |
// directly, its constructor sets up some necessary state. |
MessageLoopForUI main_message_loop; |
- scoped_ptr<base::EnvVarGetter> env(base::EnvVarGetter::Create()); |
+ scoped_ptr<base::Environment> env(base::Environment::Create()); |
bool suppress_error_dialogs = ( |
env->HasEnv("CHROME_HEADLESS") || |
parsed_command_line.HasSwitch(test_shell::kNoErrorDialogs) || |