| Index: net/udp/udp_net_log_parameters.cc
|
| diff --git a/net/udp/udp_net_log_parameters.cc b/net/udp/udp_net_log_parameters.cc
|
| index a8642dd3d81cb458290b32c70feeba1ca89db779..c258823f17755a59bc7ded082055be803d529707 100644
|
| --- a/net/udp/udp_net_log_parameters.cc
|
| +++ b/net/udp/udp_net_log_parameters.cc
|
| @@ -13,11 +13,11 @@ namespace net {
|
|
|
| namespace {
|
|
|
| -Value* NetLogUDPDataTranferCallback(int byte_count,
|
| - const char* bytes,
|
| - const IPEndPoint* address,
|
| - NetLog::LogLevel log_level) {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| +base::Value* NetLogUDPDataTranferCallback(int byte_count,
|
| + const char* bytes,
|
| + const IPEndPoint* address,
|
| + NetLog::LogLevel log_level) {
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetInteger("byte_count", byte_count);
|
| if (NetLog::IsLoggingBytes(log_level))
|
| dict->SetString("hex_encoded_bytes", base::HexEncode(bytes, byte_count));
|
| @@ -26,9 +26,9 @@ Value* NetLogUDPDataTranferCallback(int byte_count,
|
| return dict;
|
| }
|
|
|
| -Value* NetLogUDPConnectCallback(const IPEndPoint* address,
|
| - NetLog::LogLevel /* log_level */) {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| +base::Value* NetLogUDPConnectCallback(const IPEndPoint* address,
|
| + NetLog::LogLevel /* log_level */) {
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetString("address", address->ToString());
|
| return dict;
|
| }
|
|
|