| Index: net/spdy/spdy_session.cc
|
| diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
|
| index 9f2b82fc76748608d1a800c218236fcf7ed6baae..ae282ec13764478eacc9d59a1ad339903a5c85dd 100644
|
| --- a/net/spdy/spdy_session.cc
|
| +++ b/net/spdy/spdy_session.cc
|
| @@ -86,11 +86,11 @@ class NetLogSpdySynParameter : public NetLog::EventParameters {
|
| DictionaryValue* headers_dict = new DictionaryValue();
|
| for (spdy::SpdyHeaderBlock::const_iterator it = headers_->begin();
|
| it != headers_->end(); ++it) {
|
| - headers_dict->SetString(ASCIIToWide(it->first), it->second);
|
| + headers_dict->SetString(it->first, it->second);
|
| }
|
| - dict->SetInteger(L"flags", flags_);
|
| - dict->Set(L"headers", headers_dict);
|
| - dict->SetInteger(L"id", id_);
|
| + dict->SetInteger("flags", flags_);
|
| + dict->Set("headers", headers_dict);
|
| + dict->SetInteger("id", id_);
|
| return dict;
|
| }
|
|
|
| @@ -117,7 +117,7 @@ class NetLogSpdySettingsParameter : public NetLog::EventParameters {
|
| settings->Append(new StringValue(
|
| StringPrintf("[%u:%u]", it->first.id(), it->second)));
|
| }
|
| - dict->Set(L"settings", settings);
|
| + dict->Set("settings", settings);
|
| return dict;
|
| }
|
|
|
|
|