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

Issue 10854063: Clean-up inline members of nested classes (net/) (Closed)

Created:
8 years, 4 months ago by hans
Modified:
8 years, 4 months ago
Reviewers:
mmenke
CC:
chromium-reviews, pam+watch_chromium.org, cbentzel+watch_chromium.org, darin-cc_chromium.org, gavinp+disk_chromium.org
Visibility:
Public.

Description

Clean-up inline members of nested classes (net/) Due to a bug, the Clang-plugin style checker failed to warn about inline constructors, destructors, non-empty virtual methods, etc. for nested classes. The plugin has been fixed, and this patch is part of a clean-up of all the code that now causes the plugin to issue errors. BUG=139346 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=150917

Patch Set 1 #

Total comments: 47

Patch Set 2 : Addressing comments #

Total comments: 1

Patch Set 3 : add a NET_EXPORT #

Patch Set 4 : add a NET_EXPOR_PRIVATE #

Unified diffs Side-by-side diffs Delta from patch set Stats (+278 lines, -140 lines) Patch
M net/base/multi_threaded_cert_verifier.h View 1 2 3 1 chunk +2 lines, -6 lines 0 comments Download
M net/base/multi_threaded_cert_verifier.cc View 1 chunk +10 lines, -0 lines 0 comments Download
M net/base/network_change_notifier_mac.h View 1 chunk +4 lines, -12 lines 0 comments Download
M net/base/network_change_notifier_mac.cc View 1 1 chunk +18 lines, -0 lines 0 comments Download
M net/base/transport_security_state.h View 1 2 1 chunk +3 lines, -6 lines 0 comments Download
M net/base/transport_security_state.cc View 1 chunk +7 lines, -0 lines 0 comments Download
M net/disk_cache/rankings.h View 1 chunk +3 lines, -4 lines 0 comments Download
M net/disk_cache/rankings.cc View 1 1 chunk +9 lines, -0 lines 0 comments Download
M net/http/http_auth.h View 1 chunk +1 line, -9 lines 0 comments Download
M net/http/http_auth.cc View 1 chunk +12 lines, -0 lines 0 comments Download
M net/http/http_network_session.h View 1 chunk +1 line, -13 lines 0 comments Download
M net/http/http_network_session.cc View 1 chunk +14 lines, -0 lines 0 comments Download
M net/http/http_pipelined_connection_impl.h View 1 chunk +1 line, -6 lines 0 comments Download
M net/http/http_pipelined_connection_impl.cc View 1 chunk +16 lines, -0 lines 0 comments Download
M net/http/http_proxy_client_socket_pool.h View 1 chunk +1 line, -3 lines 0 comments Download
M net/http/http_proxy_client_socket_pool.cc View 1 1 chunk +6 lines, -0 lines 0 comments Download
M net/proxy/proxy_config_service_mac.h View 1 1 chunk +3 lines, -7 lines 0 comments Download
M net/proxy/proxy_config_service_mac.cc View 1 chunk +10 lines, -0 lines 0 comments Download
M net/socket/client_socket_pool_base.h View 1 chunk +2 lines, -3 lines 0 comments Download
M net/socket/client_socket_pool_base.cc View 1 1 chunk +10 lines, -0 lines 0 comments Download
M net/socket/ssl_client_socket_pool.h View 1 chunk +1 line, -3 lines 0 comments Download
M net/socket/ssl_client_socket_pool.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M net/socket/tcp_client_socket_libevent.h View 2 chunks +2 lines, -11 lines 0 comments Download
M net/socket/tcp_client_socket_libevent.cc View 1 chunk +13 lines, -0 lines 0 comments Download
M net/socket_stream/socket_stream.h View 4 chunks +6 lines, -17 lines 0 comments Download
M net/socket_stream/socket_stream.cc View 1 2 chunks +32 lines, -0 lines 0 comments Download
M net/spdy/spdy_session.h View 2 chunks +2 lines, -9 lines 0 comments Download
M net/spdy/spdy_session.cc View 1 chunk +18 lines, -0 lines 0 comments Download
M net/tools/flip_server/balsa_headers.h View 4 chunks +6 lines, -14 lines 0 comments Download
M net/tools/flip_server/balsa_headers.cc View 1 2 chunks +36 lines, -3 lines 0 comments Download
M net/tools/flip_server/output_ordering.h View 2 chunks +1 line, -2 lines 0 comments Download
M net/tools/flip_server/output_ordering.cc View 2 chunks +5 lines, -1 line 0 comments Download
M net/udp/udp_socket_libevent.h View 2 chunks +2 lines, -8 lines 0 comments Download
M net/udp/udp_socket_libevent.cc View 1 chunk +10 lines, -0 lines 0 comments Download
M net/url_request/url_request_job_factory.h View 1 chunk +1 line, -3 lines 0 comments Download
M net/url_request/url_request_job_factory.cc View 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 14 (0 generated)
hans
8 years, 4 months ago (2012-08-09 13:55:54 UTC) #1
mmenke
https://chromiumcodereview.appspot.com/10854063/diff/1/net/base/network_change_notifier_mac.cc File net/base/network_change_notifier_mac.cc (right): https://chromiumcodereview.appspot.com/10854063/diff/1/net/base/network_change_notifier_mac.cc#newcode95 net/base/network_change_notifier_mac.cc:95: void NetworkChangeNotifierMac::Forwarder::OnNetworkConfigChange( nit: put a black line between functions. ...
8 years, 4 months ago (2012-08-09 15:13:35 UTC) #2
hans
Thank you very much for the review! New patch uploaded. https://chromiumcodereview.appspot.com/10854063/diff/1/net/base/network_change_notifier_mac.cc File net/base/network_change_notifier_mac.cc (right): https://chromiumcodereview.appspot.com/10854063/diff/1/net/base/network_change_notifier_mac.cc#newcode95 ...
8 years, 4 months ago (2012-08-09 15:35:42 UTC) #3
mmenke
LGTM https://chromiumcodereview.appspot.com/10854063/diff/1/net/base/network_change_notifier_mac.h File net/base/network_change_notifier_mac.h (right): https://chromiumcodereview.appspot.com/10854063/diff/1/net/base/network_change_notifier_mac.h#newcode36 net/base/network_change_notifier_mac.h:36: : net_config_watcher_(net_config_watcher) {} On 2012/08/09 15:35:42, hans wrote: ...
8 years, 4 months ago (2012-08-09 15:41:50 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hans@chromium.org/10854063/7002
8 years, 4 months ago (2012-08-09 15:42:49 UTC) #5
commit-bot: I haz the power
Try job failure for 10854063-7002 (retry) on win for step "compile" (clobber build). It's a ...
8 years, 4 months ago (2012-08-09 16:45:48 UTC) #6
mmenke
https://chromiumcodereview.appspot.com/10854063/diff/7002/net/base/transport_security_state.h File net/base/transport_security_state.h (right): https://chromiumcodereview.appspot.com/10854063/diff/7002/net/base/transport_security_state.h#newcode154 net/base/transport_security_state.h:154: class Iterator { Looks like this should be NET_EXPORT.
8 years, 4 months ago (2012-08-09 17:05:09 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hans@chromium.org/10854063/4010
8 years, 4 months ago (2012-08-09 18:15:54 UTC) #8
commit-bot: I haz the power
Try job failure for 10854063-4010 (retry) on win for step "compile" (clobber build). It's a ...
8 years, 4 months ago (2012-08-09 19:09:18 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hans@chromium.org/10854063/13003
8 years, 4 months ago (2012-08-09 19:16:13 UTC) #10
commit-bot: I haz the power
Try job failure for 10854063-13003 (retry) on mac_rel for step "browser_tests". It's a second try, ...
8 years, 4 months ago (2012-08-09 20:21:54 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hans@chromium.org/10854063/13003
8 years, 4 months ago (2012-08-09 20:42:35 UTC) #12
mmenke
On 2012/08/09 20:42:35, I haz the power (commit-bot) wrote: > CQ is trying da patch. ...
8 years, 4 months ago (2012-08-09 20:44:22 UTC) #13
commit-bot: I haz the power
8 years, 4 months ago (2012-08-09 22:27:32 UTC) #14
Change committed as 150917

Powered by Google App Engine
This is Rietveld 408576698