| 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 #ifndef PPAPI_PROXY_PPB_BROKER_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_BROKER_PROXY_H_ |
| 6 #define PPAPI_PROXY_PPB_BROKER_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_BROKER_PROXY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/sync_socket.h" | 10 #include "base/sync_socket.h" |
| 9 #include "ipc/ipc_platform_file.h" | 11 #include "ipc/ipc_platform_file.h" |
| 10 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
| 11 #include "ppapi/proxy/interface_proxy.h" | 13 #include "ppapi/proxy/interface_proxy.h" |
| 12 #include "ppapi/proxy/proxy_completion_callback_factory.h" | 14 #include "ppapi/proxy/proxy_completion_callback_factory.h" |
| 13 #include "ppapi/utility/completion_callback_factory.h" | 15 #include "ppapi/utility/completion_callback_factory.h" |
| 14 | 16 |
| 15 namespace ppapi { | 17 namespace ppapi { |
| 16 | 18 |
| 17 class HostResource; | 19 class HostResource; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 41 void ConnectCompleteInHost(int32_t result, | 43 void ConnectCompleteInHost(int32_t result, |
| 42 const ppapi::HostResource& host_resource); | 44 const ppapi::HostResource& host_resource); |
| 43 | 45 |
| 44 ProxyCompletionCallbackFactory<PPB_Broker_Proxy> callback_factory_; | 46 ProxyCompletionCallbackFactory<PPB_Broker_Proxy> callback_factory_; |
| 45 }; | 47 }; |
| 46 | 48 |
| 47 } // namespace proxy | 49 } // namespace proxy |
| 48 } // namespace ppapi | 50 } // namespace ppapi |
| 49 | 51 |
| 50 #endif // PPAPI_PROXY_PPB_BROKER_PROXY_H_ | 52 #endif // PPAPI_PROXY_PPB_BROKER_PROXY_H_ |
| OLD | NEW |