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 PPAPI_PROXY_RESOURCE_MESSAGE_TEST_SINK_H_ | 5 #ifndef PPAPI_PROXY_RESOURCE_MESSAGE_TEST_SINK_H_ |
6 #define PPAPI_PROXY_RESOURCE_MESSAGE_TEST_SINK_H_ | 6 #define PPAPI_PROXY_RESOURCE_MESSAGE_TEST_SINK_H_ |
7 | 7 |
| 8 #include "ipc/ipc_listener.h" |
8 #include "ipc/ipc_test_sink.h" | 9 #include "ipc/ipc_test_sink.h" |
9 #include "ppapi/c/pp_stdint.h" | 10 #include "ppapi/c/pp_stdint.h" |
10 | 11 |
11 namespace ppapi { | 12 namespace ppapi { |
12 namespace proxy { | 13 namespace proxy { |
13 | 14 |
14 class ResourceMessageCallParams; | 15 class ResourceMessageCallParams; |
15 class ResourceMessageReplyParams; | 16 class ResourceMessageReplyParams; |
16 | 17 |
17 // Extends IPC::TestSink to add extra capabilities for searching for and | 18 // Extends IPC::TestSink to add extra capabilities for searching for and |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 uint32 incoming_type_; | 82 uint32 incoming_type_; |
82 int32_t result_; | 83 int32_t result_; |
83 IPC::Message reply_msg_; | 84 IPC::Message reply_msg_; |
84 IPC::Message last_handled_msg_; | 85 IPC::Message last_handled_msg_; |
85 }; | 86 }; |
86 | 87 |
87 } // namespace proxy | 88 } // namespace proxy |
88 } // namespace ppapi | 89 } // namespace ppapi |
89 | 90 |
90 #endif // PPAPI_PROXY_RESOURCE_MESSAGE_TEST_SINK_H_ | 91 #endif // PPAPI_PROXY_RESOURCE_MESSAGE_TEST_SINK_H_ |
OLD | NEW |