Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Issue 2009623002: SpdyUtils support coalescing multi-value headers. (Closed)

Created:
4 years, 7 months ago by dahollings
Modified:
4 years, 7 months ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, Buck
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

SpdyUtils support coalescing multi-value headers. Tests the case where a header has more than three values. This CL lands server change 123109579 by birenroy. BUG=488484 Committed: https://crrev.com/6c85e25f6c0268ab26f9bd8364e2901e6379eeb4 Cr-Commit-Position: refs/heads/master@{#395893}

Patch Set 1 : SpdyUtils support coalescing multi-value headers. #

Total comments: 9

Patch Set 2 : SpdyUtils support coalescing multi-value headers. #

Total comments: 2

Patch Set 3 : SpdyUtils support coalescing multi-value headers. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+24 lines, -8 lines) Patch
M net/quic/spdy_utils.cc View 1 2 1 chunk +10 lines, -8 lines 0 comments Download
M net/quic/spdy_utils_test.cc View 1 chunk +14 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (5 generated)
dahollings
4 years, 7 months ago (2016-05-24 21:09:23 UTC) #3
Ryan Hamilton
Thanks for doing this! https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc File net/quic/spdy_utils.cc (left): https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#oldcode127 net/quic/spdy_utils.cc:127: } Did you mean to ...
4 years, 7 months ago (2016-05-24 21:26:06 UTC) #4
dahollings
https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc File net/quic/spdy_utils.cc (left): https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#oldcode127 net/quic/spdy_utils.cc:127: } On 2016/05/24 21:26:05, Ryan Hamilton wrote: > Did ...
4 years, 7 months ago (2016-05-24 22:12:16 UTC) #5
Ryan Hamilton
Sweet. Just a couple minor nits. https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc File net/quic/spdy_utils.cc (right): https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#newcode129 net/quic/spdy_utils.cc:129: std::string s(v.data(), v.length()); ...
4 years, 7 months ago (2016-05-24 22:18:46 UTC) #6
Biren Roy
https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc File net/quic/spdy_utils.cc (right): https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#newcode137 net/quic/spdy_utils.cc:137: headers->ReplaceOrAppendHeader(name, s); On 2016/05/24 22:18:46, Ryan Hamilton wrote: > ...
4 years, 7 months ago (2016-05-24 22:27:28 UTC) #8
dahollings
https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc File net/quic/spdy_utils.cc (right): https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#newcode129 net/quic/spdy_utils.cc:129: std::string s(v.data(), v.length()); On 2016/05/24 22:18:46, Ryan Hamilton wrote: ...
4 years, 7 months ago (2016-05-24 22:31:23 UTC) #9
Ryan Hamilton
lgtm
4 years, 7 months ago (2016-05-24 22:38:00 UTC) #10
Ryan Hamilton
lgtm https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc File net/quic/spdy_utils.cc (right): https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#newcode137 net/quic/spdy_utils.cc:137: headers->ReplaceOrAppendHeader(name, s); On 2016/05/24 22:27:28, Biren Roy wrote: ...
4 years, 7 months ago (2016-05-24 22:43:56 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2009623002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2009623002/60001
4 years, 7 months ago (2016-05-25 15:25:54 UTC) #13
commit-bot: I haz the power
Committed patchset #3 (id:60001)
4 years, 7 months ago (2016-05-25 15:30:12 UTC) #14
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/6c85e25f6c0268ab26f9bd8364e2901e6379eeb4 Cr-Commit-Position: refs/heads/master@{#395893}
4 years, 7 months ago (2016-05-25 15:31:18 UTC) #16
Biren Roy
4 years, 7 months ago (2016-05-25 17:42:39 UTC) #17
Message was sent while issue was closed.
On 2016/05/24 22:43:56, Ryan Hamilton wrote:
> lgtm
> 
> https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc
> File net/quic/spdy_utils.cc (right):
> 
>
https://codereview.chromium.org/2009623002/diff/20001/net/quic/spdy_utils.cc#...
> net/quic/spdy_utils.cc:137: headers->ReplaceOrAppendHeader(name, s);
> On 2016/05/24 22:27:28, Biren Roy wrote:
> > On 2016/05/24 22:18:46, Ryan Hamilton wrote:
> > > On 2016/05/24 22:12:16, dahollings wrote:
> > > Ah, that makes sense. Should we transition the internal version of this
code
> > to
> > > use your implementation here for consistency?
> > 
> > I think StrCat() is great, and the internal version should continue using
it.
> 
> In general, we try to minimize the differences between the internal an
external
> versions of the QUIC code so as to simplify the merge process. Is there some
> reason we should no do that here?

Since it is QUIC code we're talking about, if you prefer the internal and
external versions of the code to be the same, I will rubber-stamp your google3
changelist.

Powered by Google App Engine
This is Rietveld 408576698