summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_channel_posix.cc2
-rw-r--r--ipc/ipc_descriptors.h2
-rw-r--r--ipc/ipc_multiprocess_test.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
index f5cf8af..9273dcb 100644
--- a/ipc/ipc_channel_posix.cc
+++ b/ipc/ipc_channel_posix.cc
@@ -24,11 +24,11 @@
#include "base/eintr_wrapper.h"
#include "base/file_path.h"
#include "base/file_util.h"
-#include "base/global_descriptors_posix.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/singleton.h"
+#include "base/posix/global_descriptors.h"
#include "base/process_util.h"
#include "base/rand_util.h"
#include "base/stl_util.h"
diff --git a/ipc/ipc_descriptors.h b/ipc/ipc_descriptors.h
index 5717aa4..b766bbb 100644
--- a/ipc/ipc_descriptors.h
+++ b/ipc/ipc_descriptors.h
@@ -6,7 +6,7 @@
#define IPC_IPC_DESCRIPTORS_H_
// This is a list of global descriptor keys to be used with the
-// base::GlobalDescriptors object (see base/global_descriptors_posix.h)
+// base::GlobalDescriptors object (see base/posix/global_descriptors.h)
enum {
kPrimaryIPCChannel = 0,
};
diff --git a/ipc/ipc_multiprocess_test.cc b/ipc/ipc_multiprocess_test.cc
index d3c46df..b13ed7b 100644
--- a/ipc/ipc_multiprocess_test.cc
+++ b/ipc/ipc_multiprocess_test.cc
@@ -7,7 +7,7 @@
#include "ipc/ipc_multiprocess_test.h"
#if defined(OS_POSIX)
-#include "base/global_descriptors_posix.h"
+#include "base/posix/global_descriptors.h"
#include "ipc/ipc_descriptors.h"
#endif