| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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 #ifndef IPC_IPC_PERFTEST_SUPPORT_H_ | 5 #ifndef IPC_IPC_PERFTEST_SUPPORT_H_ |
| 6 #define IPC_IPC_PERFTEST_SUPPORT_H_ | 6 #define IPC_IPC_PERFTEST_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/test/test_io_thread.h" | 14 #include "base/test/test_io_thread.h" |
| 15 #include "base/thread_task_runner_handle.h" | 15 #include "base/threading/thread_task_runner_handle.h" |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 17 #include "ipc/ipc_test_base.h" | 17 #include "ipc/ipc_test_base.h" |
| 18 | 18 |
| 19 namespace IPC { | 19 namespace IPC { |
| 20 namespace test { | 20 namespace test { |
| 21 | 21 |
| 22 class ChannelReflectorListener; | 22 class ChannelReflectorListener; |
| 23 | 23 |
| 24 class PingPongTestParams { | 24 class PingPongTestParams { |
| 25 public: | 25 public: |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 cpu_set_t old_cpuset_; | 90 cpu_set_t old_cpuset_; |
| 91 #endif | 91 #endif |
| 92 | 92 |
| 93 DISALLOW_COPY_AND_ASSIGN(LockThreadAffinity); | 93 DISALLOW_COPY_AND_ASSIGN(LockThreadAffinity); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } | 96 } |
| 97 } | 97 } |
| 98 | 98 |
| 99 #endif // IPC_IPC_PERFTEST_SUPPORT_H_ | 99 #endif // IPC_IPC_PERFTEST_SUPPORT_H_ |
| OLD | NEW |