| Index: sandbox/win/src/handle_inheritance_test.cc
|
| diff --git a/sandbox/win/src/handle_inheritance_test.cc b/sandbox/win/src/handle_inheritance_test.cc
|
| index 5523a6c64a6630f51989e60dd4562911a6bb441c..6dceee6d2367286125dcd9afd6063ee28d334f18 100644
|
| --- a/sandbox/win/src/handle_inheritance_test.cc
|
| +++ b/sandbox/win/src/handle_inheritance_test.cc
|
| @@ -40,8 +40,7 @@ TEST(HandleInheritanceTests, TestStdoutInheritance) {
|
| EXPECT_TRUE(::CloseHandle(file_handle));
|
|
|
| std::string data;
|
| - EXPECT_TRUE(file_util::ReadFileToString(base::FilePath(temp_file_name),
|
| - &data));
|
| + EXPECT_TRUE(base::ReadFileToString(base::FilePath(temp_file_name), &data));
|
| // Redirection uses a feature that was added in Windows Vista.
|
| if (base::win::GetVersion() >= base::win::VERSION_VISTA) {
|
| EXPECT_EQ("Example output to stdout\r\n", data);
|
|
|