summaryrefslogtreecommitdiffstats
path: root/net/test/spawned_test_server/local_test_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/test/spawned_test_server/local_test_server.h')
-rw-r--r--net/test/spawned_test_server/local_test_server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/test/spawned_test_server/local_test_server.h b/net/test/spawned_test_server/local_test_server.h
index d916835..cfd2eb3 100644
--- a/net/test/spawned_test_server/local_test_server.h
+++ b/net/test/spawned_test_server/local_test_server.h
@@ -8,7 +8,6 @@
#include <string>
#include "base/file_util.h"
-#include "base/files/scoped_file.h"
#include "base/process/process_handle.h"
#include "net/test/spawned_test_server/base_test_server.h"
@@ -106,7 +105,8 @@ class LocalTestServer : public BaseTestServer {
#if defined(OS_POSIX)
// The file descriptor the child writes to when it starts.
- base::ScopedFD child_fd_;
+ int child_fd_;
+ file_util::ScopedFD child_fd_closer_;
#endif
DISALLOW_COPY_AND_ASSIGN(LocalTestServer);