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

Issue 880963006: Create a new DataReductionProxyConfig class (Closed)

Created:
5 years, 11 months ago by jeremyim
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

Create a new DataReductionProxyConfig class This instance will be created by the DataReductionProxySettings class, and take ownership of the DataReductionProxyParams (currently owned by DataReductionProxySettings). BUG=452773 Committed: https://crrev.com/32a19e6ad65292e1efc67986e6a61c0f29e393d3 Cr-Commit-Position: refs/heads/master@{#313980}

Patch Set 1 : #

Total comments: 49

Patch Set 2 : bengr CR comments #

Patch Set 3 : Minor comment tweak #

Total comments: 6

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1140 lines, -208 lines) Patch
M android_webview/browser/aw_browser_context.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M components/components_tests.gyp View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M components/data_reduction_proxy.gypi View 2 chunks +6 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/browser/BUILD.gn View 3 chunks +7 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc View 1 2 3 2 chunks +13 lines, -10 lines 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h View 1 1 chunk +183 lines, -0 lines 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc View 1 1 chunk +292 lines, -0 lines 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_config_test_utils.h View 1 1 chunk +49 lines, -0 lines 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_config_test_utils.cc View 1 1 chunk +54 lines, -0 lines 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc View 1 1 chunk +293 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h View 1 chunk +1 line, -1 line 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.h View 1 2 3 1 chunk +90 lines, -0 lines 0 comments Download
A components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_test_utils.cc View 1 1 chunk +45 lines, -0 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator_unittest.cc View 8 chunks +9 lines, -9 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc View 1 2 chunks +6 lines, -6 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h View 1 5 chunks +4 lines, -32 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc View 1 12 chunks +21 lines, -26 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h View 1 2 chunks +9 lines, -43 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.cc View 1 6 chunks +12 lines, -42 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc View 1 3 chunks +28 lines, -27 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats_unittest.cc View 1 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 14 (5 generated)
jeremyim
PTAL!
5 years, 11 months ago (2015-01-28 04:40:18 UTC) #3
bengr
https://codereview.chromium.org/880963006/diff/20001/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/880963006/diff/20001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode60 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:60: net::NetworkChangeNotifier::RemoveIPAddressObserver(this); Does this work even if InitDataReductionProxyConfig was never ...
5 years, 10 months ago (2015-01-29 01:37:26 UTC) #4
jeremyim
https://codereview.chromium.org/880963006/diff/20001/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/880963006/diff/20001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc#newcode60 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc:60: net::NetworkChangeNotifier::RemoveIPAddressObserver(this); On 2015/01/29 01:37:25, bengr wrote: > Does this ...
5 years, 10 months ago (2015-01-29 06:38:12 UTC) #6
bengr
lgtm, but please address the cosmetic issues. https://codereview.chromium.org/880963006/diff/20001/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/880963006/diff/20001/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h#newcode8 components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h:8: #include "base/macros.h" ...
5 years, 10 months ago (2015-01-30 18:28:15 UTC) #7
jeremyim
sgurun -> PTAL at aw_browser_context.cc Thank you! https://codereview.chromium.org/880963006/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc File components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc (right): https://codereview.chromium.org/880963006/diff/80001/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc#newcode100 components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc:100: new TestDataReductionProxyParams( ...
5 years, 10 months ago (2015-01-30 18:35:15 UTC) #9
sgurun-gerrit only
On 2015/01/30 18:35:15, jeremyim wrote: > sgurun -> PTAL at aw_browser_context.cc > > Thank you! ...
5 years, 10 months ago (2015-01-30 19:10:47 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/880963006/100001
5 years, 10 months ago (2015-01-30 19:15:36 UTC) #12
commit-bot: I haz the power
Committed patchset #4 (id:100001)
5 years, 10 months ago (2015-01-30 20:38:00 UTC) #13
commit-bot: I haz the power
5 years, 10 months ago (2015-01-30 20:39:55 UTC) #14
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/32a19e6ad65292e1efc67986e6a61c0f29e393d3
Cr-Commit-Position: refs/heads/master@{#313980}

Powered by Google App Engine
This is Rietveld 408576698