Index: chromeos/process_proxy/process_output_watcher_unittest.cc |
diff --git a/chromeos/process_proxy/process_output_watcher_unittest.cc b/chromeos/process_proxy/process_output_watcher_unittest.cc |
index b45d137d36510d68ded601e0b362f79c84c8993e..5eeaf1a662f271606ef6f32a85d3518e548d7843 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]))); |