summaryrefslogtreecommitdiffstats
path: root/net/spdy/spdy_stream.cc
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-09 18:09:55 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-09 18:09:55 +0000
commitd4f3e43c8f2214164c27b49d6f06bdadc4893bc9 (patch)
tree38830c65f66a64c456dd9d38cbdc1740897cd435 /net/spdy/spdy_stream.cc
parent28a77d70ee6011e469c96b2639b76bd75512337a (diff)
downloadchromium_src-d4f3e43c8f2214164c27b49d6f06bdadc4893bc9.zip
chromium_src-d4f3e43c8f2214164c27b49d6f06bdadc4893bc9.tar.gz
chromium_src-d4f3e43c8f2214164c27b49d6f06bdadc4893bc9.tar.bz2
Consistently log the ID of a spdy stream as "stream_id"
Review URL: https://chromiumcodereview.appspot.com/10389026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136080 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_stream.cc')
-rw-r--r--net/spdy/spdy_stream.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_stream.cc b/net/spdy/spdy_stream.cc
index f1ef5b7..c3b0686 100644
--- a/net/spdy/spdy_stream.cc
+++ b/net/spdy/spdy_stream.cc
@@ -45,7 +45,7 @@ class NetLogSpdyStreamWindowUpdateParameter : public NetLog::EventParameters {
virtual Value* ToValue() const {
DictionaryValue* dict = new DictionaryValue();
- dict->SetInteger("id", static_cast<int>(stream_id_));
+ dict->SetInteger("stream_id", stream_id_);
dict->SetInteger("delta", delta_);
dict->SetInteger("window_size", window_size_);
return dict;