diff options
Diffstat (limited to 'chromeos/process_proxy/process_output_watcher_unittest.cc')
-rw-r--r-- | chromeos/process_proxy/process_output_watcher_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chromeos/process_proxy/process_output_watcher_unittest.cc b/chromeos/process_proxy/process_output_watcher_unittest.cc index b45d137..5eeaf1a 100644 --- a/chromeos/process_proxy/process_output_watcher_unittest.cc +++ b/chromeos/process_proxy/process_output_watcher_unittest.cc @@ -118,14 +118,14 @@ public: if (test_cases[i].should_send_terminating_null) test_size += sizeof(*test_str.c_str()); EXPECT_EQ(test_size, - file_util::WriteFileDescriptor(pt_pipe[1], test_str.c_str(), - test_size)); + base::WriteFileDescriptor(pt_pipe[1], test_str.c_str(), + test_size)); } all_data_received_->Wait(); // Send stop signal. It is not important which string we send. - EXPECT_EQ(1, file_util::WriteFileDescriptor(stop_pipe[1], "q", 1)); + EXPECT_EQ(1, base::WriteFileDescriptor(stop_pipe[1], "q", 1)); EXPECT_NE(-1, IGNORE_EINTR(close(stop_pipe[1]))); EXPECT_NE(-1, IGNORE_EINTR(close(pt_pipe[1]))); |