| 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_CHANNEL_PROXY_H_ | 5 #ifndef IPC_IPC_CHANNEL_PROXY_H_ |
| 6 #define IPC_IPC_CHANNEL_PROXY_H_ | 6 #define IPC_IPC_CHANNEL_PROXY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 namespace base { | 28 namespace base { |
| 29 class SingleThreadTaskRunner; | 29 class SingleThreadTaskRunner; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace IPC { | 32 namespace IPC { |
| 33 | 33 |
| 34 class ChannelFactory; | 34 class ChannelFactory; |
| 35 class MessageFilter; | 35 class MessageFilter; |
| 36 class MessageFilterRouter; | 36 class MessageFilterRouter; |
| 37 class SendCallbackHelper; | |
| 38 | 37 |
| 39 //----------------------------------------------------------------------------- | 38 //----------------------------------------------------------------------------- |
| 40 // IPC::ChannelProxy | 39 // IPC::ChannelProxy |
| 41 // | 40 // |
| 42 // This class is a helper class that is useful when you wish to run an IPC | 41 // This class is a helper class that is useful when you wish to run an IPC |
| 43 // channel on a background thread. It provides you with the option of either | 42 // channel on a background thread. It provides you with the option of either |
| 44 // handling IPC messages on that background thread or having them dispatched to | 43 // handling IPC messages on that background thread or having them dispatched to |
| 45 // your main thread (the thread on which the IPC::ChannelProxy is created). | 44 // your main thread (the thread on which the IPC::ChannelProxy is created). |
| 46 // | 45 // |
| 47 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel. | 46 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel. |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 bool did_init_; | 422 bool did_init_; |
| 424 | 423 |
| 425 #if defined(ENABLE_IPC_FUZZER) | 424 #if defined(ENABLE_IPC_FUZZER) |
| 426 OutgoingMessageFilter* outgoing_message_filter_; | 425 OutgoingMessageFilter* outgoing_message_filter_; |
| 427 #endif | 426 #endif |
| 428 }; | 427 }; |
| 429 | 428 |
| 430 } // namespace IPC | 429 } // namespace IPC |
| 431 | 430 |
| 432 #endif // IPC_IPC_CHANNEL_PROXY_H_ | 431 #endif // IPC_IPC_CHANNEL_PROXY_H_ |
| OLD | NEW |