| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/string_number_conversions.h" | |
| 6 #include "base/values.h" | |
| 7 #include "net/base/ip_endpoint.h" | |
| 8 #include "net/udp/udp_data_transfer_param.h" | |
| 9 | |
| 10 namespace net { | |
| 11 | |
| 12 UDPDataTransferNetLogParam::UDPDataTransferNetLogParam( | |
| 13 int byte_count, | |
| 14 const char* bytes, | |
| 15 bool log_bytes, | |
| 16 const IPEndPoint* address) | |
| 17 : byte_count_(byte_count), | |
| 18 hex_encoded_bytes_(log_bytes ? base::HexEncode(bytes, byte_count) : "") { | |
| 19 if (address) | |
| 20 address_.reset(new IPEndPoint(*address)); | |
| 21 } | |
| 22 | |
| 23 Value* UDPDataTransferNetLogParam::ToValue() const { | |
| 24 DictionaryValue* dict = new DictionaryValue(); | |
| 25 dict->SetInteger("byte_count", byte_count_); | |
| 26 if (!hex_encoded_bytes_.empty()) | |
| 27 dict->SetString("hex_encoded_bytes", hex_encoded_bytes_); | |
| 28 if (address_.get()) | |
| 29 dict->SetString("address", address_->ToString()); | |
| 30 return dict; | |
| 31 } | |
| 32 | |
| 33 UDPDataTransferNetLogParam::~UDPDataTransferNetLogParam() {} | |
| 34 | |
| 35 } // namespace net | |
| OLD | NEW |