summaryrefslogtreecommitdiffstats
path: root/ipc/BUILD.gn
diff options
context:
space:
mode:
authormorrita@chromium.org <morrita@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-18 22:44:10 +0000
committermorrita@chromium.org <morrita@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-18 22:44:10 +0000
commitd9674614bfd88227209c54849aaeedccdedd0b84 (patch)
treebe2a438fde0cb36646fe0d4dab2bded68f107bcc /ipc/BUILD.gn
parent6d9e0587c46c5b6d0218bc40590798c9942b2313 (diff)
downloadchromium_src-d9674614bfd88227209c54849aaeedccdedd0b84.zip
chromium_src-d9674614bfd88227209c54849aaeedccdedd0b84.tar.gz
chromium_src-d9674614bfd88227209c54849aaeedccdedd0b84.tar.bz2
Rename IPC::ChannelFactory to UnixDomainSocketAcceptor.
ChannelFactory doesn't create any channel and it just listens on and accepts from a unix socket. So this change renames it to represent what it actually does. R=darin@chromium.org,cpu@chromium.org,jeremya@chromium.org,tapted@chromium.org TEST=none BUG=377980 Review URL: https://codereview.chromium.org/305973002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284231 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/BUILD.gn')
-rw-r--r--ipc/BUILD.gn4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/BUILD.gn b/ipc/BUILD.gn
index 3bff55e..c0aa307 100644
--- a/ipc/BUILD.gn
+++ b/ipc/BUILD.gn
@@ -9,8 +9,6 @@ component("ipc") {
"ipc_channel.cc",
"ipc_channel.h",
"ipc_channel_common.cc",
- "ipc_channel_factory.cc",
- "ipc_channel_factory.h",
"ipc_channel_handle.h",
"ipc_channel_nacl.cc",
"ipc_channel_nacl.h",
@@ -70,7 +68,7 @@ component("ipc") {
if (is_win || is_ios) {
sources -= [
- "ipc_channel_factory.cc",
+ "unix_domain_socket_acceptor.cc",
"unix_domain_socket_util.cc",
]
}