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

Issue 981633002: Created new URLRequestContext for secure proxy check (Closed)

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

Description

Created new URLRequestContext for secure proxy check. The new URLRequestContext disables alternate protocols to ensure that the Data Reduction Proxy secure proxy check request goes out over vanilla HTTP so that it can be intercepted by middleboxes. Also, secure proxy check is now done on IO thread. BUG=437080 Committed: https://crrev.com/652eabf1141c00594aa6e9ed81beb980aec89198 Cr-Commit-Position: refs/heads/master@{#325302} Committed: https://crrev.com/afc53166cb6a0ed561f416403ab68261eae4427b Cr-Commit-Position: refs/heads/master@{#325464} Committed: https://crrev.com/e9ceffc7d7758d47a45034b0b308b39eb7e515dc Cr-Commit-Position: refs/heads/master@{#325674}

Patch Set 1 #

Total comments: 10

Patch Set 2 : Addressed comments. #

Total comments: 1

Patch Set 3 : Using URLRequestContextBuilder for secure proxy check #

Total comments: 10

Patch Set 4 : Addressed comments. #

Patch Set 5 : Fixed the tests #

Total comments: 26

Patch Set 6 : Moved secure proxy check to DRPConfig #

Total comments: 24

Patch Set 7 : Moved Secure Proxy check to separate class. Addressed comments. #

Total comments: 63

Patch Set 8 : Addressed comments #

Total comments: 12

Patch Set 9 : Addressed comments #

Total comments: 8

Patch Set 10 : Addressed comments #

Total comments: 4

Patch Set 11 : Fixed formatting #

Patch Set 12 : Rebased #

Patch Set 13 : Fix missing header file #

Patch Set 14 : Update data reduction proxy init in android webview #

Patch Set 15 : Rebased again #

Patch Set 16 : Fixed minor bug #

Total comments: 4

Patch Set 17 : Rebased on jeremyim@ CL which simplifies everything #

Total comments: 2

Patch Set 18 : Removed duplicate forward declarations #

Total comments: 14

Patch Set 19 : Addressed comments. #

Total comments: 3

Patch Set 20 : Addressed comments, submitting now. #

Patch Set 21 : Delayed calling GetURLRequestContext. This was causing webview tests to fail. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+154 lines, -145 lines) Patch
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 9 chunks +17 lines, -18 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 8 chunks +110 lines, -36 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config_test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config_test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +0 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +3 lines, -6 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +5 lines, -6 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 6 chunks +2 lines, -28 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +0 lines, -46 lines 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 1 chunk +12 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -3 lines 0 comments Download
M net/url_request/url_request_test_util.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 114 (39 generated)
tbansal1
sclittle@chromium.org: Please review changes in * rch@chromium.org: Please review changes in net/*
5 years, 9 months ago (2015-03-04 18:42:51 UTC) #2
sclittle
Please update the subject line of this CL, it still says DISABLE_ALTERNATE_PROTOCOLS. Also, the probe ...
5 years, 9 months ago (2015-03-04 21:35:23 UTC) #3
Ryan Hamilton
Didn't we have https://codereview.chromium.org/920993002/ to do this? How come we changed CL numbers? (I'm always ...
5 years, 9 months ago (2015-03-05 01:38:59 UTC) #4
Ryan Hamilton
The semantics of the previous incarnation seem cleaner to me. Since your request will always ...
5 years, 9 months ago (2015-03-05 01:43:57 UTC) #5
tbansal1
On 2015/03/05 01:43:57, Ryan Hamilton wrote: > The semantics of the previous incarnation seem cleaner ...
5 years, 9 months ago (2015-03-05 02:12:13 UTC) #6
Ryan Hamilton
On 2015/03/05 02:12:13, tbansal1 wrote: > On 2015/03/05 01:43:57, Ryan Hamilton wrote: > > The ...
5 years, 9 months ago (2015-03-05 20:13:35 UTC) #7
tbansal1
On 2015/03/05 20:13:35, Ryan Hamilton wrote: > On 2015/03/05 02:12:13, tbansal1 wrote: > > On ...
5 years, 9 months ago (2015-03-06 19:55:07 UTC) #8
tbansal1
Addressed comments. Not explicitly disabling spdy anymore when the UNENCRYPTED_HTTP11 flag is up. https://codereview.chromium.org/981633002/diff/1/net/base/load_flags_list.h File ...
5 years, 9 months ago (2015-03-06 19:57:40 UTC) #9
Ryan Hamilton
I don't think I understand how these changes prevent SPDY (or SSL for that matter) ...
5 years, 9 months ago (2015-03-06 23:19:53 UTC) #10
bengr
On 2015/03/06 23:19:53, Ryan Hamilton wrote: > I don't think I understand how these changes ...
5 years, 9 months ago (2015-03-09 17:42:35 UTC) #12
Ryan Hamilton
On 2015/03/09 17:42:35, bengr wrote: > I was trying to reason about this CL and ...
5 years, 9 months ago (2015-03-09 17:56:05 UTC) #13
tbansal1
ptal.
5 years, 9 months ago (2015-03-13 00:18:01 UTC) #14
sclittle
https://codereview.chromium.org/981633002/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc (right): https://codereview.chromium.org/981633002/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc#newcode70 components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc:70: builder.set_proxy_config_service( If in the future someone adds a new ...
5 years, 9 months ago (2015-03-13 01:58:27 UTC) #15
tbansal1
thanks for the comments. ptal. https://codereview.chromium.org/981633002/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc (right): https://codereview.chromium.org/981633002/diff/40001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc#newcode70 components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc:70: builder.set_proxy_config_service( On 2015/03/13 01:58:26, ...
5 years, 9 months ago (2015-03-13 23:59:29 UTC) #16
bengr
https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode375 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:375: base::Unretained(this)), io_task_runner_); Why not just send the secure proxy ...
5 years, 9 months ago (2015-03-16 23:21:06 UTC) #17
sclittle
https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc (right): https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc#newcode15 components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc:15: #include "net/url_request/url_request_context_builder.h" Some of these includes aren't used. https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc#newcode83 ...
5 years, 9 months ago (2015-03-18 22:52:15 UTC) #18
tbansal1
ptal https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode375 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:375: base::Unretained(this)), io_task_runner_); On 2015/03/16 23:21:06, bengr wrote: > ...
5 years, 9 months ago (2015-03-19 22:43:57 UTC) #19
sclittle
https://codereview.chromium.org/981633002/diff/100001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/100001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode431 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:431: url_request_context_.reset(new net::URLRequestContext()); This could possibly destroy the URLRequestContext for ...
5 years, 9 months ago (2015-03-20 19:28:46 UTC) #20
bengr
https://codereview.chromium.org/981633002/diff/100001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/100001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode248 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:248: void DataReductionProxyConfig::HandleSecureProxyCheckResponse( It would probably be better to create ...
5 years, 9 months ago (2015-03-24 15:39:12 UTC) #21
bengr
What's happening with this CL?
5 years, 8 months ago (2015-03-31 17:13:11 UTC) #22
tbansal1
ptal https://codereview.chromium.org/981633002/diff/100001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/100001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode248 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:248: void DataReductionProxyConfig::HandleSecureProxyCheckResponse( On 2015/03/24 15:39:12, bengr wrote: > ...
5 years, 8 months ago (2015-04-01 19:58:59 UTC) #23
sclittle
https://codereview.chromium.org/981633002/diff/120001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h File chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h (right): https://codereview.chromium.org/981633002/diff/120001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h#newcode10 chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h:10: #include "net/url_request/url_request_context_getter.h" Could this just be a forward declaration ...
5 years, 8 months ago (2015-04-02 00:07:00 UTC) #24
sclittle
https://codereview.chromium.org/981633002/diff/120001/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/981633002/diff/120001/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc#newcode200 components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc:200: net::HttpNetworkSession::Params* params = On 2015/04/02 00:07:00, sclittle wrote: > ...
5 years, 8 months ago (2015-04-02 00:08:35 UTC) #25
tbansal1
ptal https://codereview.chromium.org/981633002/diff/120001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h File chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h (right): https://codereview.chromium.org/981633002/diff/120001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h#newcode10 chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.h:10: #include "net/url_request/url_request_context_getter.h" On 2015/04/02 00:06:58, sclittle wrote: > ...
5 years, 8 months ago (2015-04-02 23:21:20 UTC) #26
sclittle
https://codereview.chromium.org/981633002/diff/120001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h (right): https://codereview.chromium.org/981633002/diff/120001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h#newcode21 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h:21: #include "net/url_request/url_fetcher_delegate.h" On 2015/04/02 23:21:19, tbansal1 wrote: > On ...
5 years, 8 months ago (2015-04-03 02:06:57 UTC) #27
tbansal1
ptal https://codereview.chromium.org/981633002/diff/120001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h (right): https://codereview.chromium.org/981633002/diff/120001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h#newcode21 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h:21: #include "net/url_request/url_fetcher_delegate.h" On 2015/04/03 02:06:56, sclittle wrote: > ...
5 years, 8 months ago (2015-04-03 22:14:43 UTC) #28
sclittle
https://codereview.chromium.org/981633002/diff/160001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/160001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode58 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:58: scoped_refptr<net::URLRequestContextGetter> url_request_context_getter, You don't need to pass in |url_request_context_getter|, ...
5 years, 8 months ago (2015-04-06 17:19:20 UTC) #29
tbansal1
Thanks for the comments. ptal! https://codereview.chromium.org/981633002/diff/160001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/160001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode58 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:58: scoped_refptr<net::URLRequestContextGetter> url_request_context_getter, On 2015/04/06 ...
5 years, 8 months ago (2015-04-06 18:05:15 UTC) #30
sclittle
components/data_reduction_proxy/ and chrome/browser/net/spdyproxy/ LGTM with nits. https://codereview.chromium.org/981633002/diff/180001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/180001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode59 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:59: : io_task_runner_(io_task_runner) { ...
5 years, 8 months ago (2015-04-08 18:02:07 UTC) #31
tbansal1
mmenke for chrome/browser/profiles/* and net/url_request/* https://codereview.chromium.org/981633002/diff/180001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/180001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode59 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:59: : io_task_runner_(io_task_runner) { On ...
5 years, 8 months ago (2015-04-08 18:27:23 UTC) #33
mmenke
profiles/ and net/ LGTM
5 years, 8 months ago (2015-04-08 18:33:05 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/200001
5 years, 8 months ago (2015-04-08 18:35:38 UTC) #37
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/40953) ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, ...
5 years, 8 months ago (2015-04-08 18:42:58 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/220001
5 years, 8 months ago (2015-04-08 19:13:12 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/240001
5 years, 8 months ago (2015-04-08 20:57:03 UTC) #46
tbansal1
sgurun@chromium.org: Please review changes in android_webview/*
5 years, 8 months ago (2015-04-08 22:22:52 UTC) #49
tbansal1
sgurun@chromium.org: Please review changes in android_webview/*
5 years, 8 months ago (2015-04-08 22:22:56 UTC) #50
tbansal1
sgurun@chromium.org: Please review changes in android_webview/*
5 years, 8 months ago (2015-04-08 22:22:59 UTC) #51
sgurun-gerrit only
On 2015/04/08 22:22:59, tbansal1 wrote: > mailto:sgurun@chromium.org: Please review changes in > > android_webview/* lgtm. ...
5 years, 8 months ago (2015-04-08 23:09:14 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/260001
5 years, 8 months ago (2015-04-08 23:29:26 UTC) #55
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/44454)
5 years, 8 months ago (2015-04-09 05:07:16 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/280001
5 years, 8 months ago (2015-04-09 16:00:44 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/300001
5 years, 8 months ago (2015-04-09 18:19:58 UTC) #64
bengr
https://codereview.chromium.org/981633002/diff/300001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc File chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc (right): https://codereview.chromium.org/981633002/diff/300001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc#newcode29 chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc:29: net::URLRequestContextGetter* request_context_getter, nit: name the variable: url_request_context_getter https://codereview.chromium.org/981633002/diff/300001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File ...
5 years, 8 months ago (2015-04-10 17:11:43 UTC) #66
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/320001
5 years, 8 months ago (2015-04-14 20:45:14 UTC) #69
commit-bot: I haz the power
This issue passed the CQ dry run.
5 years, 8 months ago (2015-04-14 22:33:52 UTC) #71
tbansal1
ptal https://codereview.chromium.org/981633002/diff/300001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc File chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc (right): https://codereview.chromium.org/981633002/diff/300001/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc#newcode29 chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc:29: net::URLRequestContextGetter* request_context_getter, On 2015/04/10 17:11:43, bengr wrote: > ...
5 years, 8 months ago (2015-04-14 22:36:22 UTC) #73
sclittle
https://codereview.chromium.org/981633002/diff/320001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h (right): https://codereview.chromium.org/981633002/diff/320001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h#newcode38 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h:38: class URLRequest; Remove duplicate forward declarations
5 years, 8 months ago (2015-04-14 23:25:47 UTC) #74
tbansal1
Done. Submitting now. https://codereview.chromium.org/981633002/diff/320001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h (right): https://codereview.chromium.org/981633002/diff/320001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h#newcode38 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h:38: class URLRequest; On 2015/04/14 23:25:47, sclittle ...
5 years, 8 months ago (2015-04-14 23:31:17 UTC) #75
sclittle
lgtm fwiw
5 years, 8 months ago (2015-04-14 23:32:12 UTC) #78
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/340001
5 years, 8 months ago (2015-04-14 23:32:26 UTC) #79
jeremyim
Some comments for posterity. They'll have to be addressed in a future CL if this ...
5 years, 8 months ago (2015-04-15 00:22:54 UTC) #80
tbansal1
thanks for the comments. ptal https://codereview.chromium.org/981633002/diff/340001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/340001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode340 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:340: base::Unretained(this))); On 2015/04/15 00:22:54, ...
5 years, 8 months ago (2015-04-15 17:44:14 UTC) #82
jeremyim
lgtm with a couple of nits. https://codereview.chromium.org/981633002/diff/360001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc (right): https://codereview.chromium.org/981633002/diff/360001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode129 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:129: scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, nit: ...
5 years, 8 months ago (2015-04-15 17:52:02 UTC) #83
tbansal1
5 years, 8 months ago (2015-04-15 18:30:06 UTC) #84
tbansal1
5 years, 8 months ago (2015-04-15 18:30:09 UTC) #85
tbansal1
Addressed comments, submitting now.
5 years, 8 months ago (2015-04-15 18:30:13 UTC) #86
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/380001
5 years, 8 months ago (2015-04-15 18:31:17 UTC) #89
commit-bot: I haz the power
Committed patchset #20 (id:380001)
5 years, 8 months ago (2015-04-15 21:06:21 UTC) #90
commit-bot: I haz the power
Patchset 20 (id:??) landed as https://crrev.com/652eabf1141c00594aa6e9ed81beb980aec89198 Cr-Commit-Position: refs/heads/master@{#325302}
5 years, 8 months ago (2015-04-15 21:07:08 UTC) #91
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/380001
5 years, 8 months ago (2015-04-16 17:24:17 UTC) #93
commit-bot: I haz the power
Committed patchset #20 (id:380001)
5 years, 8 months ago (2015-04-16 17:26:00 UTC) #94
commit-bot: I haz the power
Patchset 20 (id:??) landed as https://crrev.com/afc53166cb6a0ed561f416403ab68261eae4427b Cr-Commit-Position: refs/heads/master@{#325464}
5 years, 8 months ago (2015-04-16 17:26:49 UTC) #95
gone
On 2015/04/16 17:26:49, I haz the power (commit-bot) wrote: > Patchset 20 (id:??) landed as ...
5 years, 8 months ago (2015-04-16 22:21:46 UTC) #96
gone
A revert of this CL (patchset #20 id:380001) has been created in https://codereview.chromium.org/1089443003/ by dfalcantara@chromium.org. ...
5 years, 8 months ago (2015-04-16 22:23:09 UTC) #97
gone
On 2015/04/16 22:23:09, dfalcantara wrote: > A revert of this CL (patchset #20 id:380001) has ...
5 years, 8 months ago (2015-04-16 22:27:55 UTC) #98
chromium-reviews
Thanks for the log, this is very helpful. On Thu, Apr 16, 2015 at 3:27 ...
5 years, 8 months ago (2015-04-16 22:31:16 UTC) #99
boliu
So turns out the issue is the only cq bot that runs android tests does ...
5 years, 8 months ago (2015-04-16 22:43:35 UTC) #100
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/400001
5 years, 8 months ago (2015-04-17 01:11:44 UTC) #104
sclittle
lgtm fwiw
5 years, 8 months ago (2015-04-17 02:07:04 UTC) #106
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/400001
5 years, 8 months ago (2015-04-17 15:50:07 UTC) #108
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 8 months ago (2015-04-17 16:05:32 UTC) #110
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/981633002/400001
5 years, 8 months ago (2015-04-17 18:03:22 UTC) #112
commit-bot: I haz the power
Committed patchset #21 (id:400001)
5 years, 8 months ago (2015-04-17 18:10:23 UTC) #113
commit-bot: I haz the power
5 years, 8 months ago (2015-04-17 18:12:04 UTC) #114
Message was sent while issue was closed.
Patchset 21 (id:??) landed as
https://crrev.com/e9ceffc7d7758d47a45034b0b308b39eb7e515dc
Cr-Commit-Position: refs/heads/master@{#325674}

Powered by Google App Engine
This is Rietveld 408576698