| Index: mojo/edk/embedder/platform_handle.h
|
| diff --git a/mojo/edk/embedder/platform_handle.h b/mojo/edk/embedder/platform_handle.h
|
| index 4978d8cfe2005be787225de5ab5ae3e05caacde9..4f76009524a534b19d15bc3b4c881d2646f33a28 100644
|
| --- a/mojo/edk/embedder/platform_handle.h
|
| +++ b/mojo/edk/embedder/platform_handle.h
|
| @@ -72,6 +72,10 @@ struct MOJO_SYSTEM_IMPL_EXPORT PlatformHandle {
|
| // A Windows HANDLE may be duplicated to another process but not yet sent to
|
| // that process. This tracks the handle's owning process.
|
| base::ProcessHandle owning_process;
|
| +
|
| + // A Windows HANDLE may be an unconnected named pipe. In this case, we need to
|
| + // wait for a connection before communicating on the pipe.
|
| + bool needs_connection = false;
|
| };
|
| #else
|
| #error "Platform not yet supported."
|
|
|