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

Issue 903213003: Enable QUIC for proxies based on Finch config and command line switch. (Closed)

Created:
5 years, 10 months ago by tbansal1
Modified:
5 years, 10 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

(1) Chrome data compression proxy should use QUIC only if it is part of data compression QUIC field trial. (2) If QUIC is disabled by command line switch or flag, then QUIC should be disabled globally, including usage of QUIC in data compression proxy. (3) If Chrome is part of data compression QUIC field trial, it does NOT enable QUIC for non-proxy URLs. BUG=343579 Committed: https://crrev.com/ed0aeccb2df07b46ca69d7328d9fab6d5aae5f8e Cr-Commit-Position: refs/heads/master@{#317232}

Patch Set 1 #

Total comments: 1

Patch Set 2 : Followed on what we discussed. #

Total comments: 28

Patch Set 3 : Addressed comments and removed code duplication. #

Total comments: 16

Patch Set 4 : Addressed comments, added more tests #

Total comments: 16

Patch Set 5 : Addressed Ryan's comments. #

Patch Set 6 : Added more tests. #

Patch Set 7 : Fixed formatting #

Total comments: 37

Patch Set 8 : Addressed Ben's comments #

Total comments: 15

Patch Set 9 : Addressed all comments. #

Total comments: 10

Patch Set 10 : Addressed all comments. Added new field in IOThread globals #

Total comments: 4

Patch Set 11 : Removed enable_quic_for_data_reduction_proxy from http_network_session.h #

Total comments: 2

Patch Set 12 : Removed one tiny function. #

Total comments: 8

Patch Set 13 : Addressed comments. #

Total comments: 2

Patch Set 14 : Addressed Ryan's comments. #

Total comments: 2

Patch Set 15 : Changed variable name #

Patch Set 16 : Moved back EnableQuic to UI thread #

Patch Set 17 : Added TODO #

Total comments: 1

Patch Set 18 : Rebased and addressed comments #

Patch Set 19 : Fixed error due to missing argument #

Total comments: 1

Patch Set 20 : Added comment #

Unified diffs Side-by-side diffs Delta from patch set Stats (+217 lines, -19 lines) Patch
M android_webview/browser/aw_browser_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/io_thread.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/io_thread.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +24 lines, -0 lines 0 comments Download
M chrome/browser/io_thread_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 6 chunks +32 lines, -0 lines 0 comments Download
M chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/profiles/profile_impl_io_data.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +7 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +2 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +4 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 4 chunks +66 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M components/data_reduction_proxy/core/common/data_reduction_proxy_params.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +11 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 8 chunks +29 lines, -2 lines 0 comments Download
M net/http/http_network_session.h View 1 2 3 4 5 6 7 8 10 1 chunk +1 line, -0 lines 0 comments Download
M net/http/http_network_session.cc View 1 2 3 4 5 6 7 8 10 2 chunks +2 lines, -0 lines 0 comments Download
M net/http/http_stream_factory_impl_job.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +14 lines, -6 lines 0 comments Download
M net/http/http_stream_factory_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/quic_network_transaction_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 79 (13 generated)
tbansal1
Initial suggestions sought: Would it be preferable to export the global state of QUIC from ...
5 years, 10 months ago (2015-02-06 22:15:41 UTC) #2
Ryan Hamilton
https://codereview.chromium.org/903213003/diff/1/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/1/chrome/browser/io_thread.cc#newcode1231 chrome/browser/io_thread.cc:1231: "DataReductionProxyUseQUICAsPrimaryOrigin") == "Enabled"; Ah, I see. Hm, I'm not ...
5 years, 10 months ago (2015-02-06 22:23:53 UTC) #3
tbansal1
On 2015/02/06 22:23:53, Ryan Hamilton wrote: > https://codereview.chromium.org/903213003/diff/1/chrome/browser/io_thread.cc > File chrome/browser/io_thread.cc (right): > > https://codereview.chromium.org/903213003/diff/1/chrome/browser/io_thread.cc#newcode1231 ...
5 years, 10 months ago (2015-02-06 22:31:44 UTC) #4
Ryan Hamilton
> Yup, totally understand your concern. I did say that before but probably was not ...
5 years, 10 months ago (2015-02-06 22:34:52 UTC) #5
tbansal1
5 years, 10 months ago (2015-02-07 00:53:13 UTC) #6
tbansal1
PTAL!
5 years, 10 months ago (2015-02-07 00:53:46 UTC) #7
bengr
This should have tests. https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc#newcode1240 chrome/browser/io_thread.cc:1240: "DataReductionProxyUseQUICAsPrimaryOrigin") == "Enabled"; How about ...
5 years, 10 months ago (2015-02-07 01:48:48 UTC) #8
Ryan Hamilton
https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc#newcode1240 chrome/browser/io_thread.cc:1240: "DataReductionProxyUseQUICAsPrimaryOrigin") == "Enabled"; I think you need to check ...
5 years, 10 months ago (2015-02-08 16:56:36 UTC) #9
tbansal1
ptal https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc#newcode1240 chrome/browser/io_thread.cc:1240: "DataReductionProxyUseQUICAsPrimaryOrigin") == "Enabled"; On 2015/02/08 16:56:36, Ryan Hamilton ...
5 years, 10 months ago (2015-02-10 19:46:07 UTC) #10
tbansal1
ptal
5 years, 10 months ago (2015-02-10 19:46:09 UTC) #11
bengr
https://codereview.chromium.org/903213003/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc (right): https://codereview.chromium.org/903213003/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc#newcode134 components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc:134: bool quic_enabled_for_proxies) { I weakly prefer adding EnableQUIC instead ...
5 years, 10 months ago (2015-02-10 20:18:31 UTC) #12
tbansal1
ptal! https://codereview.chromium.org/903213003/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc (right): https://codereview.chromium.org/903213003/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc#newcode134 components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc:134: bool quic_enabled_for_proxies) { On 2015/02/10 20:18:31, bengr wrote: ...
5 years, 10 months ago (2015-02-10 22:24:39 UTC) #13
tbansal1
Marking rch comments as done. https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/20001/chrome/browser/io_thread.cc#newcode1240 chrome/browser/io_thread.cc:1240: "DataReductionProxyUseQUICAsPrimaryOrigin") == "Enabled"; On ...
5 years, 10 months ago (2015-02-10 22:45:41 UTC) #14
Ryan Hamilton
https://codereview.chromium.org/903213003/diff/60001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/60001/chrome/browser/io_thread.cc#newcode1241 chrome/browser/io_thread.cc:1241: return group; It looks like the only caller of ...
5 years, 10 months ago (2015-02-11 00:20:32 UTC) #15
tbansal1
mmenke@chromium.org: Please review changes in chrome/browser/profiles/* https://codereview.chromium.org/903213003/diff/60001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/60001/chrome/browser/io_thread.cc#newcode1241 chrome/browser/io_thread.cc:1241: return group; On ...
5 years, 10 months ago (2015-02-11 01:25:26 UTC) #17
tbansal1
Thanks for the comments, one more take please.
5 years, 10 months ago (2015-02-11 01:26:05 UTC) #18
tbansal1
Added more tests. Ready for review.
5 years, 10 months ago (2015-02-11 20:02:03 UTC) #19
bengr
https://codereview.chromium.org/903213003/diff/120001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/120001/chrome/browser/io_thread.cc#newcode1240 chrome/browser/io_thread.cc:1240: base::FieldTrialList::FindFullName(kQuicFieldTrialName); Indentation is off. https://codereview.chromium.org/903213003/diff/120001/chrome/browser/io_thread.cc#newcode1253 chrome/browser/io_thread.cc:1253: IsIncludedInUseQUICFieldTrial(); I'd rename ...
5 years, 10 months ago (2015-02-11 23:57:28 UTC) #20
tbansal1
Thanks for comments. PTAL. https://codereview.chromium.org/903213003/diff/120001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/120001/chrome/browser/io_thread.cc#newcode1240 chrome/browser/io_thread.cc:1240: base::FieldTrialList::FindFullName(kQuicFieldTrialName); On 2015/02/11 23:57:27, bengr ...
5 years, 10 months ago (2015-02-12 02:27:22 UTC) #21
bengr
https://codereview.chromium.org/903213003/diff/120001/chrome/browser/profiles/profile_impl_io_data.cc File chrome/browser/profiles/profile_impl_io_data.cc (right): https://codereview.chromium.org/903213003/diff/120001/chrome/browser/profiles/profile_impl_io_data.cc#newcode191 chrome/browser/profiles/profile_impl_io_data.cc:191: IOThread::ShouldEnableQuicForProxies(command_line, On 2015/02/12 02:27:21, tbansal1 wrote: > On 2015/02/11 ...
5 years, 10 months ago (2015-02-12 17:14:46 UTC) #22
mmenke
https://codereview.chromium.org/903213003/diff/140001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/140001/chrome/browser/io_thread.cc#newcode1158 chrome/browser/io_thread.cc:1158: if (enable_quic) { Having quic disabled but enabled for ...
5 years, 10 months ago (2015-02-12 18:10:45 UTC) #23
bengr
https://codereview.chromium.org/903213003/diff/140001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/140001/chrome/browser/io_thread.cc#newcode1247 chrome/browser/io_thread.cc:1247: base::StringPiece quic_trial_group) { On 2015/02/12 18:10:45, mmenke wrote: > ...
5 years, 10 months ago (2015-02-12 18:15:02 UTC) #24
tbansal1
Thanks for the comments. PTAL. One question for reviewers: Right now, I have function IsIncludedInQuicFieldTrial() ...
5 years, 10 months ago (2015-02-13 17:10:40 UTC) #25
mmenke
https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread.cc#newcode1269 chrome/browser/io_thread.cc:1269: IsIncludedInQuicFieldTrial(); Per earlier comment, do we really want to ...
5 years, 10 months ago (2015-02-13 17:45:22 UTC) #26
tbansal1
Just responding to some comments quickly, while I work on the others. https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc ...
5 years, 10 months ago (2015-02-13 18:03:47 UTC) #27
mmenke
Quick responses https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread.cc#newcode1269 chrome/browser/io_thread.cc:1269: IsIncludedInQuicFieldTrial(); On 2015/02/13 18:03:47, tbansal1 wrote: > ...
5 years, 10 months ago (2015-02-13 18:09:44 UTC) #28
tbansal1
On 2015/02/13 18:03:47, tbansal1 wrote: > Just responding to some comments quickly, while I work ...
5 years, 10 months ago (2015-02-13 18:11:13 UTC) #29
tbansal1
On 2015/02/13 18:09:44, mmenke wrote: > Quick responses > > https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread.cc > File chrome/browser/io_thread.cc (right): ...
5 years, 10 months ago (2015-02-13 18:11:54 UTC) #30
mmenke
https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread_unittest.cc File chrome/browser/io_thread_unittest.cc (right): https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread_unittest.cc#newcode150 chrome/browser/io_thread_unittest.cc:150: EXPECT_FALSE(params.quic_enable_connection_racing); Should check params.enable_quic_for_proxies here (I was thinking the ...
5 years, 10 months ago (2015-02-13 18:27:15 UTC) #31
tbansal1
Thanks for comments. ptal. https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread_unittest.cc File chrome/browser/io_thread_unittest.cc (right): https://codereview.chromium.org/903213003/diff/160001/chrome/browser/io_thread_unittest.cc#newcode163 chrome/browser/io_thread_unittest.cc:163: EXPECT_TRUE(params.enable_quic_for_proxies); On 2015/02/13 18:09:44, mmenke ...
5 years, 10 months ago (2015-02-13 19:54:29 UTC) #32
mmenke
LGTM https://codereview.chromium.org/903213003/diff/180001/chrome/browser/io_thread.h File chrome/browser/io_thread.h (right): https://codereview.chromium.org/903213003/diff/180001/chrome/browser/io_thread.h#newcode345 chrome/browser/io_thread.h:345: base::StringPiece quic_trial_group); These can now be removed from ...
5 years, 10 months ago (2015-02-13 20:19:52 UTC) #33
Ryan Hamilton
https://codereview.chromium.org/903213003/diff/180001/net/http/http_network_session.h File net/http/http_network_session.h (right): https://codereview.chromium.org/903213003/diff/180001/net/http/http_network_session.h#newcode117 net/http/http_network_session.h:117: bool enable_quic_for_data_reduction_proxy; Where is this parameter being used? I ...
5 years, 10 months ago (2015-02-13 20:47:20 UTC) #34
mmenke
https://codereview.chromium.org/903213003/diff/180001/net/http/http_network_session.h File net/http/http_network_session.h (right): https://codereview.chromium.org/903213003/diff/180001/net/http/http_network_session.h#newcode117 net/http/http_network_session.h:117: bool enable_quic_for_data_reduction_proxy; On 2015/02/13 20:47:20, Ryan Hamilton wrote: > ...
5 years, 10 months ago (2015-02-13 20:57:24 UTC) #35
tbansal1
https://codereview.chromium.org/903213003/diff/180001/net/http/http_network_session.h File net/http/http_network_session.h (right): https://codereview.chromium.org/903213003/diff/180001/net/http/http_network_session.h#newcode117 net/http/http_network_session.h:117: bool enable_quic_for_data_reduction_proxy; On 2015/02/13 20:57:24, mmenke wrote: > On ...
5 years, 10 months ago (2015-02-13 21:26:37 UTC) #37
Ryan Hamilton
https://codereview.chromium.org/903213003/diff/200001/chrome/browser/io_thread.h File chrome/browser/io_thread.h (right): https://codereview.chromium.org/903213003/diff/200001/chrome/browser/io_thread.h#newcode186 chrome/browser/io_thread.h:186: Optional<bool> enable_quic_for_data_reduction_proxy; Can you remove this too?
5 years, 10 months ago (2015-02-13 21:39:04 UTC) #38
tbansal1
https://codereview.chromium.org/903213003/diff/200001/chrome/browser/io_thread.h File chrome/browser/io_thread.h (right): https://codereview.chromium.org/903213003/diff/200001/chrome/browser/io_thread.h#newcode186 chrome/browser/io_thread.h:186: Optional<bool> enable_quic_for_data_reduction_proxy; On 2015/02/13 21:39:04, Ryan Hamilton wrote: > ...
5 years, 10 months ago (2015-02-13 22:04:13 UTC) #39
Ryan Hamilton
On 2015/02/13 22:04:13, tbansal1 wrote: > https://codereview.chromium.org/903213003/diff/200001/chrome/browser/io_thread.h > File chrome/browser/io_thread.h (right): > > https://codereview.chromium.org/903213003/diff/200001/chrome/browser/io_thread.h#newcode186 > ...
5 years, 10 months ago (2015-02-14 00:09:12 UTC) #40
Ryan Hamilton
https://codereview.chromium.org/903213003/diff/220001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/220001/chrome/browser/io_thread.cc#newcode1281 chrome/browser/io_thread.cc:1281: } I stared at these two methods for about ...
5 years, 10 months ago (2015-02-14 00:09:24 UTC) #41
tbansal1
https://codereview.chromium.org/903213003/diff/220001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): https://codereview.chromium.org/903213003/diff/220001/chrome/browser/io_thread.cc#newcode1281 chrome/browser/io_thread.cc:1281: } On 2015/02/14 00:09:23, Ryan Hamilton wrote: > I ...
5 years, 10 months ago (2015-02-14 01:06:11 UTC) #42
Ryan Hamilton
Thanks for making these changes. I'm quite happy with the state of this CL now. ...
5 years, 10 months ago (2015-02-17 02:53:55 UTC) #43
tbansal1
Thanks for the comment. https://codereview.chromium.org/903213003/diff/240001/net/http/http_stream_factory_impl_job.cc File net/http/http_stream_factory_impl_job.cc (right): https://codereview.chromium.org/903213003/diff/240001/net/http/http_stream_factory_impl_job.cc#newcode760 net/http/http_stream_factory_impl_job.cc:760: using_quic_proxy_ = true; On 2015/02/17 ...
5 years, 10 months ago (2015-02-17 17:27:49 UTC) #45
bengr
https://codereview.chromium.org/903213003/diff/260001/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc File components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc (right): https://codereview.chromium.org/903213003/diff/260001/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc#newcode329 components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc:329: command_line_origin_ = origin; It looks like GetDefaultDevOrigin() can return ...
5 years, 10 months ago (2015-02-17 17:30:48 UTC) #46
tbansal1
https://codereview.chromium.org/903213003/diff/260001/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc File components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc (right): https://codereview.chromium.org/903213003/diff/260001/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc#newcode329 components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc:329: command_line_origin_ = origin; On 2015/02/17 17:30:47, bengr wrote: > ...
5 years, 10 months ago (2015-02-17 18:02:47 UTC) #47
tbansal1
Moved EnableQuic back to UI thread since enabling on IO thread had no effect. ptal.
5 years, 10 months ago (2015-02-17 22:48:12 UTC) #48
Ryan Hamilton
On 2015/02/17 22:48:12, tbansal1 wrote: > Moved EnableQuic back to UI thread since enabling on ...
5 years, 10 months ago (2015-02-17 23:16:40 UTC) #49
tbansal1
On 2015/02/17 23:16:40, Ryan Hamilton wrote: > On 2015/02/17 22:48:12, tbansal1 wrote: > > Moved ...
5 years, 10 months ago (2015-02-17 23:27:12 UTC) #50
tbansal1
On 2015/02/17 23:27:12, tbansal1 wrote: > On 2015/02/17 23:16:40, Ryan Hamilton wrote: > > On ...
5 years, 10 months ago (2015-02-18 17:31:40 UTC) #51
tbansal1
On 2015/02/18 17:31:40, tbansal1 wrote: > On 2015/02/17 23:27:12, tbansal1 wrote: > > On 2015/02/17 ...
5 years, 10 months ago (2015-02-18 17:31:54 UTC) #52
Ryan Hamilton
On 2015/02/18 17:31:54, tbansal1 wrote: > On 2015/02/18 17:31:40, tbansal1 wrote: > > On 2015/02/17 ...
5 years, 10 months ago (2015-02-18 19:09:57 UTC) #53
tbansal1
ptal.
5 years, 10 months ago (2015-02-19 23:05:41 UTC) #54
Ryan Hamilton
lgtm Thanks for adding the TODO. I look forward to it being done :>
5 years, 10 months ago (2015-02-19 23:11:20 UTC) #55
bengr
data_reduction_proxy lgtm, with nit. https://codereview.chromium.org/903213003/diff/320001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc (right): https://codereview.chromium.org/903213003/diff/320001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc#newcode484 components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc:484: if (enable_quic){ add a space ...
5 years, 10 months ago (2015-02-19 23:30:46 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/903213003/340001
5 years, 10 months ago (2015-02-20 00:07:26 UTC) #59
commit-bot: I haz the power
Try jobs failed on following builders: android_rel_tests_recipe on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/android_rel_tests_recipe/builds/3774)
5 years, 10 months ago (2015-02-20 00:27:34 UTC) #61
tbansal1
sgurun@chromium.org: Please review changes in android_webview/browser/*
5 years, 10 months ago (2015-02-20 00:33:19 UTC) #63
sgurun-gerrit only
https://codereview.chromium.org/903213003/diff/360001/android_webview/browser/aw_browser_context.cc File android_webview/browser/aw_browser_context.cc (right): https://codereview.chromium.org/903213003/diff/360001/android_webview/browser/aw_browser_context.cc#newcode284 android_webview/browser/aw_browser_context.cc:284: false); Please add a comment explaining QUIC is disabled ...
5 years, 10 months ago (2015-02-20 01:47:53 UTC) #64
sgurun-gerrit only
5 years, 10 months ago (2015-02-20 01:47:58 UTC) #65
tbansal1
Thanks for the comment. ptal.
5 years, 10 months ago (2015-02-20 01:50:55 UTC) #66
sgurun-gerrit only
On 2015/02/20 01:50:55, tbansal1 wrote: > Thanks for the comment. ptal. lgtm
5 years, 10 months ago (2015-02-20 01:52:19 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/903213003/380001
5 years, 10 months ago (2015-02-20 01:53:50 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/10222)
5 years, 10 months ago (2015-02-20 01:59:28 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/903213003/380001
5 years, 10 months ago (2015-02-20 02:08:45 UTC) #73
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_dbg on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_dbg/builds/44711)
5 years, 10 months ago (2015-02-20 02:14:30 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/903213003/380001
5 years, 10 months ago (2015-02-20 02:36:50 UTC) #77
commit-bot: I haz the power
Committed patchset #20 (id:380001)
5 years, 10 months ago (2015-02-20 03:44:26 UTC) #78
commit-bot: I haz the power
5 years, 10 months ago (2015-02-20 03:45:02 UTC) #79
Message was sent while issue was closed.
Patchset 20 (id:??) landed as
https://crrev.com/ed0aeccb2df07b46ca69d7328d9fab6d5aae5f8e
Cr-Commit-Position: refs/heads/master@{#317232}

Powered by Google App Engine
This is Rietveld 408576698