| 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 #ifndef IPC_IPC_SYNC_CHANNEL_H_ | 5 #ifndef IPC_IPC_SYNC_CHANNEL_H_ |
| 6 #define IPC_IPC_SYNC_CHANNEL_H_ | 6 #define IPC_IPC_SYNC_CHANNEL_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
| 15 #include "base/synchronization/waitable_event_watcher.h" | 15 #include "base/synchronization/waitable_event_watcher.h" |
| 16 #include "ipc/ipc_channel_handle.h" | 16 #include "ipc/ipc_channel_handle.h" |
| 17 #include "ipc/ipc_channel_proxy.h" | 17 #include "ipc/ipc_channel_proxy.h" |
| 18 #include "ipc/ipc_sync_message.h" | 18 #include "ipc/ipc_sync_message.h" |
| 19 #include "ipc/ipc_sync_message_filter.h" | 19 #include "ipc/ipc_sync_message_filter.h" |
| 20 | 20 |
| 21 namespace base { | 21 namespace base { |
| 22 class WaitableEvent; | 22 class WaitableEvent; |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 243 |
| 244 // Tracks SyncMessageFilters created before complete channel initialization. | 244 // Tracks SyncMessageFilters created before complete channel initialization. |
| 245 std::vector<scoped_refptr<SyncMessageFilter>> pre_init_sync_message_filters_; | 245 std::vector<scoped_refptr<SyncMessageFilter>> pre_init_sync_message_filters_; |
| 246 | 246 |
| 247 DISALLOW_COPY_AND_ASSIGN(SyncChannel); | 247 DISALLOW_COPY_AND_ASSIGN(SyncChannel); |
| 248 }; | 248 }; |
| 249 | 249 |
| 250 } // namespace IPC | 250 } // namespace IPC |
| 251 | 251 |
| 252 #endif // IPC_IPC_SYNC_CHANNEL_H_ | 252 #endif // IPC_IPC_SYNC_CHANNEL_H_ |
| OLD | NEW |