diff options
Diffstat (limited to 'net/socket/tcp_client_socket.cc')
-rw-r--r-- | net/socket/tcp_client_socket.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/socket/tcp_client_socket.cc b/net/socket/tcp_client_socket.cc index dbd2105..a91d33d 100644 --- a/net/socket/tcp_client_socket.cc +++ b/net/socket/tcp_client_socket.cc @@ -20,7 +20,7 @@ bool SystemSupportsTCPFastOpen() { static const base::FilePath::CharType kTCPFastOpenProcFilePath[] = "/proc/sys/net/ipv4/tcp_fastopen"; std::string system_enabled_tcp_fastopen; - if (!file_util::ReadFileToString( + if (!base::ReadFileToString( base::FilePath(kTCPFastOpenProcFilePath), &system_enabled_tcp_fastopen)) { return false; |