| Index: net/http/http_stream_factory_impl_job.cc
|
| diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
|
| index 6bfef1ec7bdad300bb0477c494e404f564d2a80b..179d8c458324ae8975216e22cbbf746885faff40 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -42,11 +42,11 @@
|
| namespace net {
|
|
|
| // Returns parameters associated with the start of a HTTP stream job.
|
| -Value* NetLogHttpStreamJobCallback(const GURL* original_url,
|
| - const GURL* url,
|
| - RequestPriority priority,
|
| - NetLog::LogLevel /* log_level */) {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| +base::Value* NetLogHttpStreamJobCallback(const GURL* original_url,
|
| + const GURL* url,
|
| + RequestPriority priority,
|
| + NetLog::LogLevel /* log_level */) {
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetString("original_url", original_url->GetOrigin().spec());
|
| dict->SetString("url", url->GetOrigin().spec());
|
| dict->SetInteger("priority", priority);
|
| @@ -55,12 +55,12 @@ Value* NetLogHttpStreamJobCallback(const GURL* original_url,
|
|
|
| // Returns parameters associated with the Proto (with NPN negotiation) of a HTTP
|
| // stream.
|
| -Value* NetLogHttpStreamProtoCallback(
|
| +base::Value* NetLogHttpStreamProtoCallback(
|
| const SSLClientSocket::NextProtoStatus status,
|
| const std::string* proto,
|
| const std::string* server_protos,
|
| NetLog::LogLevel /* log_level */) {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
|
|
| dict->SetString("next_proto_status",
|
| SSLClientSocket::NextProtoStatusToString(status));
|
|
|