| 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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 int32 routing_id_; | 49 int32 routing_id_; |
| 50 uint32 plugin_dispatcher_id_; | 50 uint32 plugin_dispatcher_id_; |
| 51 uint32 socket_id_; | 51 uint32 socket_id_; |
| 52 | 52 |
| 53 scoped_ptr<net::UDPServerSocket> socket_; | 53 scoped_ptr<net::UDPServerSocket> socket_; |
| 54 | 54 |
| 55 scoped_refptr<net::IOBuffer> recvfrom_buffer_; | 55 scoped_refptr<net::IOBuffer> recvfrom_buffer_; |
| 56 scoped_refptr<net::IOBuffer> sendto_buffer_; | 56 scoped_refptr<net::IOBuffer> sendto_buffer_; |
| 57 | 57 |
| 58 net::IPEndPoint recvfrom_address_; | 58 net::IPEndPoint recvfrom_address_; |
| 59 net::IPEndPoint bound_address_; |
| 59 | 60 |
| 60 DISALLOW_COPY_AND_ASSIGN(PepperUDPSocket); | 61 DISALLOW_COPY_AND_ASSIGN(PepperUDPSocket); |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ | 64 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ |
| OLD | NEW |