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_sync_channel.h" | 5 #include "ipc/ipc_sync_channel.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/bind.h" | 13 #include "base/bind.h" |
14 #include "base/location.h" | 14 #include "base/location.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/process/process_handle.h" | 17 #include "base/process/process_handle.h" |
18 #include "base/run_loop.h" | 18 #include "base/run_loop.h" |
19 #include "base/single_thread_task_runner.h" | 19 #include "base/single_thread_task_runner.h" |
20 #include "base/strings/string_util.h" | 20 #include "base/strings/string_util.h" |
21 #include "base/synchronization/waitable_event.h" | 21 #include "base/synchronization/waitable_event.h" |
22 #include "base/thread_task_runner_handle.h" | |
23 #include "base/threading/platform_thread.h" | 22 #include "base/threading/platform_thread.h" |
24 #include "base/threading/thread.h" | 23 #include "base/threading/thread.h" |
| 24 #include "base/threading/thread_task_runner_handle.h" |
25 #include "build/build_config.h" | 25 #include "build/build_config.h" |
26 #include "ipc/ipc_listener.h" | 26 #include "ipc/ipc_listener.h" |
27 #include "ipc/ipc_message.h" | 27 #include "ipc/ipc_message.h" |
28 #include "ipc/ipc_sender.h" | 28 #include "ipc/ipc_sender.h" |
29 #include "ipc/ipc_sync_message_filter.h" | 29 #include "ipc/ipc_sync_message_filter.h" |
30 #include "ipc/ipc_sync_message_unittest.h" | 30 #include "ipc/ipc_sync_message_unittest.h" |
31 #include "testing/gtest/include/gtest/gtest.h" | 31 #include "testing/gtest/include/gtest/gtest.h" |
32 | 32 |
33 using base::WaitableEvent; | 33 using base::WaitableEvent; |
34 | 34 |
(...skipping 1788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1823 } | 1823 } |
1824 | 1824 |
1825 // Windows needs to send an out-of-band secret to verify the client end of the | 1825 // Windows needs to send an out-of-band secret to verify the client end of the |
1826 // channel. Test that we still connect correctly in that case. | 1826 // channel. Test that we still connect correctly in that case. |
1827 TEST_F(IPCSyncChannelTest, Verified) { | 1827 TEST_F(IPCSyncChannelTest, Verified) { |
1828 Verified(); | 1828 Verified(); |
1829 } | 1829 } |
1830 | 1830 |
1831 } // namespace | 1831 } // namespace |
1832 } // namespace IPC | 1832 } // namespace IPC |
OLD | NEW |