Index: ipc/ipc_channel_posix_unittest.cc |
diff --git a/ipc/ipc_channel_posix_unittest.cc b/ipc/ipc_channel_posix_unittest.cc |
index 448e6485be3b0a6a9b02a20764a8369a11d07d94..b49b09619aca7a5ebc833190afad747b70266d70 100644 |
--- a/ipc/ipc_channel_posix_unittest.cc |
+++ b/ipc/ipc_channel_posix_unittest.cc |
@@ -21,6 +21,7 @@ |
#include "base/test/multiprocess_test.h" |
#include "base/test/test_timeouts.h" |
#include "ipc/ipc_listener.h" |
+#include "ipc/unix_domain_socket_util.h" |
#include "testing/multiprocess_func_list.h" |
namespace { |
@@ -145,7 +146,7 @@ void IPCChannelPosixTest::SetUpSocket(IPC::ChannelHandle *handle, |
struct sockaddr_un server_address = { 0 }; |
memset(&server_address, 0, sizeof(server_address)); |
server_address.sun_family = AF_UNIX; |
- int path_len = snprintf(server_address.sun_path, IPC::kMaxPipeNameLength, |
+ int path_len = snprintf(server_address.sun_path, IPC::kMaxSocketNameLength, |
"%s", name.c_str()); |
DCHECK_EQ(static_cast<int>(name.length()), path_len); |
size_t server_address_len = offsetof(struct sockaddr_un, |
@@ -311,7 +312,7 @@ TEST_F(IPCChannelPosixTest, BadChannelName) { |
"future-proof_growth_strategies_Continually" |
"pontificate_proactive_potentialities_before" |
"leading-edge_processes"; |
- EXPECT_GE(strlen(kTooLongName), IPC::kMaxPipeNameLength); |
+ EXPECT_GE(strlen(kTooLongName), IPC::kMaxSocketNameLength); |
IPC::ChannelHandle handle2(kTooLongName); |
IPC::Channel channel2(handle2, IPC::Channel::MODE_NAMED_SERVER, NULL); |
EXPECT_FALSE(channel2.Connect()); |