| Index: ipc/mojo/ipc_mojo_bootstrap.cc
|
| diff --git a/ipc/mojo/ipc_mojo_bootstrap.cc b/ipc/mojo/ipc_mojo_bootstrap.cc
|
| index b488dd5ab6148a9b63a347c9ae57b5cd5e54dc29..1aca9c9335dcbdb88908999da0751d8b18052bda 100644
|
| --- a/ipc/mojo/ipc_mojo_bootstrap.cc
|
| +++ b/ipc/mojo/ipc_mojo_bootstrap.cc
|
| @@ -155,7 +155,11 @@ base::ProcessId MojoBootstrap::GetSelfPID() const {
|
| if (int global_pid = Channel::GetGlobalPid())
|
| return global_pid;
|
| #endif // OS_LINUX
|
| +#if defined(OS_NACL)
|
| + return -1;
|
| +#else
|
| return base::GetCurrentProcId();
|
| +#endif // defined(OS_NACL)
|
| }
|
|
|
| void MojoBootstrap::Fail() {
|
|
|