| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Unit test for SyncChannel. | 5 // Unit test for SyncChannel. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/platform_thread.h" | 13 #include "base/platform_thread.h" |
| 14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 15 #include "base/stl_util-inl.h" | 15 #include "base/stl_util-inl.h" |
| 16 #include "base/string_util.h" | 16 #include "base/string_util.h" |
| 17 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" | 17 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" |
| 18 #include "base/thread.h" | 18 #include "base/thread.h" |
| 19 #include "base/waitable_event.h" | 19 #include "base/waitable_event.h" |
| 20 #include "ipc/ipc_message.h" | 20 #include "ipc/ipc_message.h" |
| 21 #include "ipc/ipc_sync_channel.h" | 21 #include "ipc/ipc_sync_channel.h" |
| 22 #include "ipc/ipc_sync_message_filter.h" | 22 #include "ipc/ipc_sync_message_filter.h" |
| 23 #include "ipc/ipc_sync_message_unittest.h" |
| 23 #include "testing/gtest/include/gtest/gtest.h" | 24 #include "testing/gtest/include/gtest/gtest.h" |
| 24 | 25 |
| 25 | |
| 26 #define MESSAGES_INTERNAL_FILE "ipc/ipc_sync_message_unittest.h" | |
| 27 #include "ipc/ipc_message_macros.h" | |
| 28 | |
| 29 // Definition of IPC Messages used for this test. | |
| 30 #define MESSAGES_INTERNAL_IMPL_FILE "ipc/ipc_sync_message_unittest.h" | |
| 31 #include "ipc/ipc_message_impl_macros.h" | |
| 32 | |
| 33 using namespace IPC; | 26 using namespace IPC; |
| 34 using base::WaitableEvent; | 27 using base::WaitableEvent; |
| 35 | 28 |
| 36 namespace { | 29 namespace { |
| 37 | 30 |
| 38 // Base class for a "process" with listener and IPC threads. | 31 // Base class for a "process" with listener and IPC threads. |
| 39 class Worker : public Channel::Listener, public Message::Sender { | 32 class Worker : public Channel::Listener, public Message::Sender { |
| 40 public: | 33 public: |
| 41 // Will create a channel without a name. | 34 // Will create a channel without a name. |
| 42 Worker(Channel::Mode mode, const std::string& thread_name) | 35 Worker(Channel::Mode mode, const std::string& thread_name) |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 server.done_event()->Wait(); | 1155 server.done_event()->Wait(); |
| 1163 server.done_event()->Reset(); | 1156 server.done_event()->Reset(); |
| 1164 | 1157 |
| 1165 server.SendDummy(); | 1158 server.SendDummy(); |
| 1166 server.done_event()->Wait(); | 1159 server.done_event()->Wait(); |
| 1167 | 1160 |
| 1168 EXPECT_FALSE(server.send_result()); | 1161 EXPECT_FALSE(server.send_result()); |
| 1169 } | 1162 } |
| 1170 | 1163 |
| 1171 | 1164 |
| OLD | NEW |