| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ipc/ipc_channel.h" | 5 #include "ipc/ipc_channel.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/atomic_sequence_num.h" | 9 #include "base/atomic_sequence_num.h" |
| 10 #include "base/process_util.h" | |
| 11 #include "base/rand_util.h" | 10 #include "base/rand_util.h" |
| 12 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
| 13 | 12 |
| 14 #if !defined(OS_NACL) | 13 #if !defined(OS_NACL) |
| 15 namespace { | 14 namespace { |
| 16 | 15 |
| 17 // Global atomic used to guarantee channel IDs are unique. | 16 // Global atomic used to guarantee channel IDs are unique. |
| 18 base::StaticAtomicSequenceNumber g_last_id; | 17 base::StaticAtomicSequenceNumber g_last_id; |
| 19 | 18 |
| 20 } // namespace | 19 } // namespace |
| (...skipping 13 matching lines...) Expand all Loading... |
| 34 | 33 |
| 35 int process_id = base::GetCurrentProcId(); | 34 int process_id = base::GetCurrentProcId(); |
| 36 return base::StringPrintf("%d.%u.%d", | 35 return base::StringPrintf("%d.%u.%d", |
| 37 process_id, | 36 process_id, |
| 38 g_last_id.GetNext(), | 37 g_last_id.GetNext(), |
| 39 base::RandInt(0, std::numeric_limits<int32>::max())); | 38 base::RandInt(0, std::numeric_limits<int32>::max())); |
| 40 } | 39 } |
| 41 | 40 |
| 42 } // namespace IPC | 41 } // namespace IPC |
| 43 | 42 |
| OLD | NEW |