Chromium Code Reviews| Index: ipc/ipc_channel.cc |
| diff --git a/ipc/ipc_channel.cc b/ipc/ipc_channel.cc |
| index a6ee14c01fcb10b95cc2d20e5aa3c13ab02f67e7..4a4e40ddc1fb82bfa2bbeeff49cf0917b252ef7a 100644 |
| --- a/ipc/ipc_channel.cc |
| +++ b/ipc/ipc_channel.cc |
| @@ -10,14 +10,12 @@ |
| #include "base/rand_util.h" |
| #include "base/strings/stringprintf.h" |
| -#if !defined(OS_NACL) |
|
Junichi Uekawa
2014/10/17 10:31:13
This is going to introduce a new object in NaCl ?
hidehiko
2014/10/20 06:02:28
This file is NOT built for the SFI NaCl IRT build
|
| namespace { |
| // Global atomic used to guarantee channel IDs are unique. |
| base::StaticAtomicSequenceNumber g_last_id; |
| } // namespace |
| -#endif |
| namespace IPC { |
| @@ -39,4 +37,3 @@ std::string Channel::GenerateUniqueRandomChannelID() { |
| } |
| } // namespace IPC |
| - |