| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TCP_SOCKET_RESOURCE_BASE_H_ | 5 #ifndef PPAPI_PROXY_TCP_SOCKET_RESOURCE_BASE_H_ |
| 6 #define PPAPI_PROXY_TCP_SOCKET_RESOURCE_BASE_H_ | 6 #define PPAPI_PROXY_TCP_SOCKET_RESOURCE_BASE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <queue> | 10 #include <queue> |
| 9 #include <string> | 11 #include <string> |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 12 #include "base/basictypes.h" | 14 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 14 #include "ppapi/c/ppb_tcp_socket.h" | 16 #include "ppapi/c/ppb_tcp_socket.h" |
| 15 #include "ppapi/c/private/ppb_net_address_private.h" | 17 #include "ppapi/c/private/ppb_net_address_private.h" |
| 16 #include "ppapi/proxy/plugin_resource.h" | 18 #include "ppapi/proxy/plugin_resource.h" |
| 17 #include "ppapi/proxy/ppapi_proxy_export.h" | 19 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 18 #include "ppapi/shared_impl/ppb_tcp_socket_shared.h" | 20 #include "ppapi/shared_impl/ppb_tcp_socket_shared.h" |
| 19 #include "ppapi/shared_impl/tracked_callback.h" | 21 #include "ppapi/shared_impl/tracked_callback.h" |
| 20 | 22 |
| 21 namespace ppapi { | 23 namespace ppapi { |
| 22 | 24 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 149 |
| 148 TCPSocketVersion version_; | 150 TCPSocketVersion version_; |
| 149 | 151 |
| 150 DISALLOW_COPY_AND_ASSIGN(TCPSocketResourceBase); | 152 DISALLOW_COPY_AND_ASSIGN(TCPSocketResourceBase); |
| 151 }; | 153 }; |
| 152 | 154 |
| 153 } // namespace proxy | 155 } // namespace proxy |
| 154 } // namespace ppapi | 156 } // namespace ppapi |
| 155 | 157 |
| 156 #endif // PPAPI_PROXY_TCP_SOCKET_RESOURCE_BASE_H_ | 158 #endif // PPAPI_PROXY_TCP_SOCKET_RESOURCE_BASE_H_ |
| OLD | NEW |