OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 NET_UDP_UDP_DATA_TRANSFER_PARAM_H_ | 5 #ifndef NET_UDP_UDP_DATA_TRANSFER_PARAM_H_ |
6 #define NET_UDP_UDP_DATA_TRANSFER_PARAM_H_ | 6 #define NET_UDP_UDP_DATA_TRANSFER_PARAM_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 virtual ~UDPDataTransferNetLogParam(); | 34 virtual ~UDPDataTransferNetLogParam(); |
35 | 35 |
36 private: | 36 private: |
37 const int byte_count_; | 37 const int byte_count_; |
38 const std::string hex_encoded_bytes_; | 38 const std::string hex_encoded_bytes_; |
39 scoped_ptr<IPEndPoint> address_; | 39 scoped_ptr<IPEndPoint> address_; |
40 }; | 40 }; |
41 | 41 |
42 } // namespace net | 42 } // namespace net |
43 | 43 |
44 #endif // NET_BASE_ADDRESS_LIST_NET_LOG_PARAM_H_ | 44 #endif // NET_UDP_UDP_DATA_TRANSFER_PARAM_H_ |
OLD | NEW |