OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ppapi/proxy/plugin_message_filter.h" | 5 #include "ppapi/proxy/plugin_message_filter.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "ipc/ipc_channel.h" |
9 #include "ppapi/proxy/ppapi_messages.h" | 10 #include "ppapi/proxy/ppapi_messages.h" |
10 #include "ppapi/proxy/resource_message_params.h" | 11 #include "ppapi/proxy/resource_message_params.h" |
11 #include "ppapi/proxy/resource_reply_thread_registrar.h" | 12 #include "ppapi/proxy/resource_reply_thread_registrar.h" |
12 #include "ppapi/shared_impl/ppapi_globals.h" | 13 #include "ppapi/shared_impl/ppapi_globals.h" |
13 #include "ppapi/shared_impl/proxy_lock.h" | 14 #include "ppapi/shared_impl/proxy_lock.h" |
14 #include "ppapi/shared_impl/resource.h" | 15 #include "ppapi/shared_impl/resource.h" |
15 #include "ppapi/shared_impl/resource_tracker.h" | 16 #include "ppapi/shared_impl/resource_tracker.h" |
16 | 17 |
17 namespace ppapi { | 18 namespace ppapi { |
18 namespace proxy { | 19 namespace proxy { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 DVLOG_IF(1, reply_params.sequence() != 0) | 102 DVLOG_IF(1, reply_params.sequence() != 0) |
102 << "Pepper resource reply message received but the resource doesn't " | 103 << "Pepper resource reply message received but the resource doesn't " |
103 "exist (probably has been destroyed)."; | 104 "exist (probably has been destroyed)."; |
104 return; | 105 return; |
105 } | 106 } |
106 resource->OnReplyReceived(reply_params, nested_msg); | 107 resource->OnReplyReceived(reply_params, nested_msg); |
107 } | 108 } |
108 | 109 |
109 } // namespace proxy | 110 } // namespace proxy |
110 } // namespace ppapi | 111 } // namespace ppapi |
OLD | NEW |