| 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/ppb_url_request_info_proxy.h" | 5 #include "ppapi/proxy/ppb_url_request_info_proxy.h" |
| 6 | 6 |
| 7 #include "ppapi/proxy/plugin_dispatcher.h" | 7 #include "ppapi/proxy/plugin_dispatcher.h" |
| 8 #include "ppapi/shared_impl/url_request_info_impl.h" | 8 #include "ppapi/shared_impl/url_request_info_impl.h" |
| 9 #include "ppapi/thunk/thunk.h" | 9 #include "ppapi/thunk/thunk.h" |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 return &info; | 41 return &info; |
| 42 } | 42 } |
| 43 | 43 |
| 44 bool PPB_URLRequestInfo_Proxy::OnMessageReceived(const IPC::Message& msg) { | 44 bool PPB_URLRequestInfo_Proxy::OnMessageReceived(const IPC::Message& msg) { |
| 45 // No messages to handle. | 45 // No messages to handle. |
| 46 return false; | 46 return false; |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace proxy | 49 } // namespace proxy |
| 50 } // namespace ppapi | 50 } // namespace ppapi |
| OLD | NEW |