Index: third_party/mojo/src/mojo/edk/system/connection_manager.h |
diff --git a/third_party/mojo/src/mojo/edk/system/connection_manager.h b/third_party/mojo/src/mojo/edk/system/connection_manager.h |
index 9aeaa26b13a2227aa20bec00c9838dd4dcb13ef7..e5e8c933e6e70948a65da7c36ced9e051ccbb1d3 100644 |
--- a/third_party/mojo/src/mojo/edk/system/connection_manager.h |
+++ b/third_party/mojo/src/mojo/edk/system/connection_manager.h |
@@ -7,6 +7,7 @@ |
#include "base/macros.h" |
#include "mojo/edk/system/connection_identifier.h" |
+#include "mojo/edk/system/process_identifier.h" |
#include "mojo/edk/system/system_impl_export.h" |
namespace mojo { |
@@ -18,10 +19,6 @@ class ScopedPlatformHandle; |
namespace system { |
-// Identifiers for processes (note that these are not OS process IDs): |
-using ProcessIdentifier = uint64_t; |
-const ProcessIdentifier kInvalidProcessIdentifier = 0; |
- |
// |ConnectionManager| is an interface for the system that allows "connections" |
// (i.e., native "pipes") to be established between different processes. |
// |