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

Issue 2315613002: Extracted NetLog class's inner enum types into their own enum classes and (Closed)

Created:
4 years, 3 months ago by mikecirone
Modified:
4 years, 3 months ago
Reviewers:
tfarina, eroman
CC:
mmenke, chromium-reviews, asargent_no_longer_on_chrome, Lei Zhang, bengr, Avi (use Gerrit), Nicolas Zea, rohitrao (ping after 24h), Sergey Ulanov
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Extracted NetLog class's inner enum types into their own enum classes and refactored codebase accordingly. This is the first step towards achieving the "Don't use so many inner classes for NetLog" cleanup ticket, which seeks to make the codebase more "Include what you use" clean. There are many "net/log/net_log.h" includes in the codebase. Since 'net_log.h' has many includes itself, this leaves the codebase susceptible to the undesirable scenario where clients of 'net_log.h' could be relying upon 'net_log.h' not for its contents but its inner includes. Extracting NetLog's inner classes into their own files will help with the above issue. For instance, once these inner NetLog classes are extracted: ThreadSafeObserver, Entry, EntryData, NetLog enum types, then ThreadSafeObserver clients will not need to include "net_log.h". Here are a couple historical notes: 1) In refactoring "NetLog::TYPE_SSL_PRIVATE_KEY_OPERATION" to "NetLogEventType::SSL_PRIVATE_KEY_OPERATION", the removal of "TYPE_" from "TYPE_SSL_PRIVATE_KEY_OPERATION" created a compiler error when compiling an ssl-based object file because it turns out that SSL_PRIVATE_KEY_OPERATION is a macro definition in the ssl translation unit; this resulted in a macro collision. To resolve, "NetLogEventType::SSL_PRIVATE_KEY_OPERATION" was changed to "NetLogEventType::SSL_PRIVATE_KEY_OP". - There aren't any dependencies in the [netlog viewer] code that depend on the old naming so this should be fine. 2) The new enum classes, as opposed to enums, made it so that [NetLogEnumClass]::LABEL needed to be statically cast to int at times. -e.g.- In NetLog::GetEventTypesAsValue()'s for loop to iterate through all enums. - Also had to do this in 2 or 3 instances outside of net_log.cc. BUG=473710 R=eroman@chromium.org,tfarina@chromium.org TBR=asargent@chromium.org,thestig@chromium.org,bengr@chromium.org,avi@chromium.org,zea@chromium.org,rohitrao@chromium.org,sergeyu@chromium.org,mmenke@chromium.org Committed: https://crrev.com/8b85c43f674d711380f660fea44a19653622ac61 Cr-Commit-Position: refs/heads/master@{#417358}

Patch Set 1 #

Total comments: 14

Patch Set 2 : Updated NetLog enum instances in comments with new naming. Also added author's name to AUTHORS file. #

Total comments: 4

Patch Set 3 : Added namespace formatting in comment at end of net namespace block in 2 new files. #

Patch Set 4 : Fixed a straggling, old enum and applied static_cast<int> to the new netlog enum types, since this … #

Total comments: 2

Patch Set 5 : Ran "git cl format" on code. Much formatting ensued. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1861 lines, -1673 lines) Patch
M AUTHORS View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/api/dial/dial_service.cc View 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/net/chrome_network_delegate.cc View 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/renderer_host/safe_browsing_resource_throttle.h View 1 2 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/browser/renderer_host/safe_browsing_resource_throttle.cc View 1 2 9 chunks +17 lines, -15 lines 0 comments Download
M chrome/browser/ui/webui/net_internals/net_internals_ui_browsertest.cc View 1 2 3 4 2 chunks +5 lines, -4 lines 0 comments Download
M components/cronet/android/url_request_context_adapter.cc View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc View 2 chunks +2 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc View 2 chunks +2 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics_unittest.cc View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M components/data_reduction_proxy/core/common/data_reduction_proxy_event_creator.h View 5 chunks +9 lines, -8 lines 0 comments Download
M components/data_reduction_proxy/core/common/data_reduction_proxy_event_creator.cc View 14 chunks +27 lines, -27 lines 0 comments Download
M components/data_reduction_proxy/core/common/data_reduction_proxy_event_store_unittest.cc View 1 2 3 4 10 chunks +12 lines, -11 lines 0 comments Download
M components/net_log/net_log_file_writer_unittest.cc View 3 chunks +3 lines, -2 lines 0 comments Download
M content/browser/appcache/appcache_url_request_job.cc View 1 2 3 4 4 chunks +6 lines, -5 lines 0 comments Download
M content/browser/download/base_file.cc View 9 chunks +12 lines, -11 lines 0 comments Download
M content/browser/download/base_file_win.cc View 3 chunks +3 lines, -2 lines 0 comments Download
M content/browser/download/download_file_impl.cc View 1 2 3 4 4 chunks +11 lines, -9 lines 0 comments Download
M content/browser/download/download_item_impl.cc View 1 2 3 4 8 chunks +24 lines, -27 lines 0 comments Download
M content/browser/download/download_manager_impl.cc View 4 chunks +4 lines, -3 lines 0 comments Download
M content/browser/loader/netlog_observer.cc View 6 chunks +10 lines, -8 lines 0 comments Download
M content/browser/media/media_internals_proxy.cc View 1 2 3 4 2 chunks +13 lines, -12 lines 0 comments Download
M content/browser/service_worker/service_worker_fetch_dispatcher.cc View 1 2 3 4 12 chunks +15 lines, -12 lines 0 comments Download
M content/browser/service_worker/service_worker_url_request_job.cc View 1 2 3 4 5 chunks +25 lines, -23 lines 0 comments Download
M extensions/browser/api/cast_channel/cast_socket.cc View 2 chunks +2 lines, -1 line 0 comments Download
M extensions/browser/api/web_request/web_request_api_helpers.cc View 1 2 3 4 7 chunks +13 lines, -15 lines 0 comments Download
M extensions/browser/extension_throttle_entry.cc View 3 chunks +4 lines, -2 lines 0 comments Download
M extensions/browser/extension_throttle_manager.cc View 3 chunks +4 lines, -2 lines 0 comments Download
M google_apis/gcm/engine/connection_factory_impl.cc View 1 2 3 4 2 chunks +17 lines, -16 lines 0 comments Download
M ios/chrome/browser/ios_chrome_io_thread.mm View 1 2 3 4 4 chunks +5 lines, -3 lines 0 comments Download
M jingle/glue/proxy_resolving_client_socket.cc View 1 2 3 4 2 chunks +18 lines, -18 lines 0 comments Download
M net/base/logging_network_change_observer.cc View 8 chunks +8 lines, -7 lines 0 comments Download
M net/base/upload_data_stream.cc View 1 2 3 4 6 chunks +9 lines, -8 lines 0 comments Download
M net/cert/ct_policy_enforcer.cc View 3 chunks +4 lines, -2 lines 0 comments Download
M net/cert/multi_log_ct_verifier.cc View 1 2 3 4 3 chunks +5 lines, -6 lines 0 comments Download
M net/cert/multi_log_ct_verifier_unittest.cc View 1 2 3 4 3 chunks +3 lines, -2 lines 0 comments Download
M net/cert/multi_threaded_cert_verifier.cc View 1 2 3 4 7 chunks +13 lines, -10 lines 0 comments Download
M net/disk_cache/blockfile/entry_impl.cc View 1 2 3 4 12 chunks +26 lines, -23 lines 0 comments Download
M net/disk_cache/blockfile/sparse_control.cc View 8 chunks +14 lines, -13 lines 0 comments Download
M net/disk_cache/memory/mem_entry_impl.cc View 1 2 3 4 13 chunks +26 lines, -29 lines 0 comments Download
M net/disk_cache/simple/simple_entry_impl.h View 2 chunks +2 lines, -1 line 0 comments Download
M net/disk_cache/simple/simple_entry_impl.cc View 1 2 3 4 37 chunks +71 lines, -79 lines 0 comments Download
M net/dns/dns_session.cc View 3 chunks +3 lines, -2 lines 0 comments Download
M net/dns/dns_transaction.cc View 1 2 3 4 9 chunks +15 lines, -14 lines 0 comments Download
M net/dns/host_resolver_impl.cc View 1 2 3 4 21 chunks +36 lines, -38 lines 0 comments Download
M net/dns/host_resolver_impl_unittest.cc View 3 chunks +6 lines, -2 lines 0 comments Download
M net/filter/filter.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/filter/sdch_filter.cc View 3 chunks +3 lines, -2 lines 0 comments Download
M net/ftp/ftp_ctrl_response_buffer.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/ftp/ftp_network_transaction.cc View 4 chunks +4 lines, -3 lines 0 comments Download
M net/http/bidirectional_stream.cc View 13 chunks +18 lines, -15 lines 0 comments Download
M net/http/bidirectional_stream_unittest.cc View 1 2 3 4 6 chunks +47 lines, -39 lines 0 comments Download
M net/http/http_auth_handler.cc View 2 chunks +5 lines, -4 lines 0 comments Download
M net/http/http_auth_handler_negotiate.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/http/http_auth_handler_unittest.cc View 1 2 3 4 2 chunks +5 lines, -3 lines 0 comments Download
M net/http/http_cache_transaction.cc View 25 chunks +33 lines, -28 lines 0 comments Download
M net/http/http_cache_unittest.cc View 1 2 3 4 13 chunks +65 lines, -64 lines 0 comments Download
M net/http/http_network_transaction.cc View 12 chunks +18 lines, -17 lines 0 comments Download
M net/http/http_network_transaction_unittest.cc View 1 2 3 4 12 chunks +47 lines, -45 lines 0 comments Download
M net/http/http_proxy_client_socket.cc View 1 2 3 4 4 chunks +8 lines, -8 lines 0 comments Download
M net/http/http_proxy_client_socket_pool.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/http/http_proxy_client_socket_wrapper.cc View 1 2 3 4 3 chunks +7 lines, -4 lines 0 comments Download
M net/http/http_stream_factory_impl_job.cc View 6 chunks +8 lines, -6 lines 0 comments Download
M net/http/http_stream_factory_impl_job_controller.cc View 3 chunks +4 lines, -3 lines 0 comments Download
M net/http/http_stream_factory_impl_request.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M net/http/http_stream_parser.cc View 1 2 3 4 5 chunks +16 lines, -19 lines 0 comments Download
M net/log/bounded_file_net_log_observer_unittest.cc View 1 2 3 4 3 chunks +9 lines, -7 lines 0 comments Download
M net/log/net_log.h View 9 chunks +33 lines, -52 lines 0 comments Download
M net/log/net_log.cc View 1 2 3 4 15 chunks +50 lines, -52 lines 0 comments Download
A net/log/net_log_event_type.h View 1 2 1 chunk +27 lines, -0 lines 0 comments Download
M net/log/net_log_event_type_list.h View 1 chunk +1 line, -1 line 0 comments Download
A net/log/net_log_source_type.h View 1 2 1 chunk +20 lines, -0 lines 0 comments Download
M net/log/net_log_unittest.cc View 4 chunks +11 lines, -9 lines 0 comments Download
M net/log/net_log_util.cc View 3 chunks +6 lines, -5 lines 0 comments Download
M net/log/test_net_log.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M net/log/test_net_log_entry.h View 3 chunks +5 lines, -4 lines 0 comments Download
M net/log/test_net_log_entry.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M net/log/test_net_log_util.h View 3 chunks +11 lines, -10 lines 0 comments Download
M net/log/test_net_log_util.cc View 6 chunks +16 lines, -14 lines 0 comments Download
M net/log/trace_net_log_observer.cc View 4 chunks +4 lines, -3 lines 0 comments Download
M net/log/trace_net_log_observer_unittest.cc View 16 chunks +28 lines, -26 lines 0 comments Download
M net/log/write_to_file_net_log_observer_unittest.cc View 3 chunks +8 lines, -6 lines 0 comments Download
M net/proxy/multi_threaded_proxy_resolver.cc View 2 chunks +4 lines, -3 lines 0 comments Download
M net/proxy/multi_threaded_proxy_resolver_unittest.cc View 1 2 3 4 6 chunks +8 lines, -12 lines 0 comments Download
M net/proxy/proxy_list.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/proxy/proxy_resolver_factory_mojo.cc View 2 chunks +5 lines, -4 lines 0 comments Download
M net/proxy/proxy_resolver_factory_mojo_unittest.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M net/proxy/proxy_resolver_v8_tracing_wrapper.cc View 3 chunks +4 lines, -3 lines 0 comments Download
M net/proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc View 1 2 3 4 7 chunks +25 lines, -16 lines 0 comments Download
M net/proxy/proxy_script_decider.cc View 1 2 3 4 9 chunks +18 lines, -15 lines 0 comments Download
M net/proxy/proxy_script_decider_unittest.cc View 1 2 3 4 6 chunks +42 lines, -41 lines 0 comments Download
M net/proxy/proxy_service.cc View 1 2 3 4 12 chunks +15 lines, -12 lines 0 comments Download
M net/proxy/proxy_service_mojo_unittest.cc View 5 chunks +5 lines, -4 lines 0 comments Download
M net/proxy/proxy_service_unittest.cc View 1 2 3 4 5 chunks +20 lines, -22 lines 0 comments Download
M net/quic/chromium/bidirectional_stream_quic_impl_unittest.cc View 2 chunks +7 lines, -6 lines 0 comments Download
M net/quic/chromium/quic_chromium_client_session.cc View 6 chunks +7 lines, -5 lines 0 comments Download
M net/quic/chromium/quic_chromium_client_stream.cc View 3 chunks +4 lines, -3 lines 0 comments Download
M net/quic/chromium/quic_connection_logger.cc View 1 2 3 4 15 chunks +37 lines, -35 lines 0 comments Download
M net/quic/chromium/quic_http_stream.cc View 6 chunks +9 lines, -8 lines 0 comments Download
M net/quic/chromium/quic_http_stream_test.cc View 2 chunks +7 lines, -6 lines 0 comments Download
M net/quic/chromium/quic_network_transaction_unittest.cc View 4 chunks +11 lines, -10 lines 0 comments Download
M net/quic/chromium/quic_stream_factory.cc View 1 2 3 4 4 chunks +9 lines, -6 lines 0 comments Download
M net/sdch/sdch_owner.cc View 3 chunks +3 lines, -2 lines 0 comments Download
M net/socket/client_socket_handle.cc View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M net/socket/client_socket_pool_base.cc View 1 2 3 4 17 chunks +28 lines, -23 lines 0 comments Download
M net/socket/client_socket_pool_base_unittest.cc View 1 2 3 4 10 chunks +39 lines, -45 lines 0 comments Download
M net/socket/fuzzed_socket.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/socket/socket_test_util.cc View 3 chunks +3 lines, -2 lines 0 comments Download
M net/socket/socks5_client_socket.cc View 1 2 3 4 11 chunks +24 lines, -19 lines 0 comments Download
M net/socket/socks5_client_socket_unittest.cc View 1 2 3 4 8 chunks +11 lines, -10 lines 0 comments Download
M net/socket/socks_client_socket.cc View 3 chunks +4 lines, -3 lines 0 comments Download
M net/socket/socks_client_socket_pool.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/socket/socks_client_socket_unittest.cc View 1 2 3 4 7 chunks +19 lines, -23 lines 0 comments Download
M net/socket/ssl_client_socket_impl.cc View 1 2 3 4 15 chunks +21 lines, -21 lines 0 comments Download
M net/socket/ssl_client_socket_pool.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/socket/ssl_client_socket_unittest.cc View 1 2 3 4 8 chunks +12 lines, -12 lines 0 comments Download
M net/socket/ssl_server_socket_impl.cc View 1 2 3 4 7 chunks +10 lines, -7 lines 0 comments Download
M net/socket/tcp_socket_posix.h View 1 chunk +3 lines, -3 lines 0 comments Download
M net/socket/tcp_socket_posix.cc View 1 2 3 4 12 chunks +21 lines, -19 lines 0 comments Download
M net/socket/tcp_socket_win.h View 1 chunk +3 lines, -3 lines 0 comments Download
M net/socket/tcp_socket_win.cc View 1 2 3 4 15 chunks +27 lines, -25 lines 0 comments Download
M net/socket/transport_client_socket_pool.cc View 4 chunks +5 lines, -3 lines 0 comments Download
M net/socket/transport_client_socket_pool_test_util.cc View 4 chunks +4 lines, -3 lines 0 comments Download
M net/socket/transport_client_socket_unittest.cc View 3 chunks +4 lines, -3 lines 0 comments Download
M net/socket/websocket_transport_client_socket_pool.cc View 1 2 3 4 8 chunks +18 lines, -14 lines 0 comments Download
M net/spdy/spdy_http_stream.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/spdy/spdy_network_transaction_unittest.cc View 1 2 3 4 2 chunks +20 lines, -18 lines 0 comments Download
M net/spdy/spdy_proxy_client_socket.cc View 1 2 3 4 8 chunks +18 lines, -14 lines 0 comments Download
M net/spdy/spdy_proxy_client_socket_unittest.cc View 1 2 3 4 2 chunks +24 lines, -20 lines 0 comments Download
M net/spdy/spdy_session.cc View 32 chunks +33 lines, -31 lines 0 comments Download
M net/spdy/spdy_session_pool.cc View 5 chunks +5 lines, -4 lines 0 comments Download
M net/spdy/spdy_session_unittest.cc View 1 2 3 4 5 chunks +10 lines, -7 lines 0 comments Download
M net/spdy/spdy_stream.cc View 1 2 7 chunks +7 lines, -6 lines 0 comments Download
M net/spdy/spdy_stream_unittest.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/tools/gdig/gdig.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/udp/udp_socket_posix.cc View 1 2 3 4 8 chunks +15 lines, -14 lines 0 comments Download
M net/udp/udp_socket_unittest.cc View 1 2 3 4 2 chunks +26 lines, -18 lines 0 comments Download
M net/udp/udp_socket_win.cc View 7 chunks +13 lines, -10 lines 0 comments Download
M net/url_request/sdch_dictionary_fetcher.cc View 1 2 3 chunks +3 lines, -2 lines 0 comments Download
M net/url_request/url_request.cc View 1 2 3 4 16 chunks +20 lines, -19 lines 0 comments Download
M net/url_request/url_request_http_job.cc View 1 2 3 4 7 chunks +9 lines, -8 lines 0 comments Download
M net/url_request/url_request_http_job_unittest.cc View 1 2 2 chunks +2 lines, -1 line 0 comments Download
M net/url_request/url_request_job.cc View 1 2 3 4 5 chunks +6 lines, -5 lines 0 comments Download
M net/url_request/url_request_redirect_job.cc View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M net/url_request/url_request_throttler_entry.cc View 1 2 3 4 3 chunks +9 lines, -8 lines 0 comments Download
M net/url_request/url_request_throttler_manager.cc View 1 2 3 4 3 chunks +5 lines, -3 lines 0 comments Download
M net/url_request/url_request_unittest.cc View 1 2 3 4 9 chunks +64 lines, -76 lines 0 comments Download

Messages

Total messages: 38 (15 generated)
mikecirone
Here are some notes on the development work: 1) The NetLogEventPhase enum class is inside ...
4 years, 3 months ago (2016-09-06 07:47:29 UTC) #3
mmenke
Thanks for doing this! This is a pretty good sized CL (Though, admittedly, most changes ...
4 years, 3 months ago (2016-09-06 18:16:09 UTC) #4
eroman
mmenke: I can review this (moving you to cc list)
4 years, 3 months ago (2016-09-06 18:42:47 UTC) #6
eroman
Thanks, this change looks good! * It doesn't look like you have signed the CLA ...
4 years, 3 months ago (2016-09-06 19:32:21 UTC) #7
tfarina
Could you copy chromium-reviews@chromium.org as well?
4 years, 3 months ago (2016-09-06 19:49:13 UTC) #8
mikecirone
On 2016/09/06 19:32:21, eroman wrote: > Thanks, this change looks good! > > * It ...
4 years, 3 months ago (2016-09-07 01:25:34 UTC) #11
mikecirone
4 years, 3 months ago (2016-09-07 01:27:15 UTC) #12
tfarina
I think Eric will do the real review. From a couple of files I looked ...
4 years, 3 months ago (2016-09-07 19:25:26 UTC) #13
mikecirone
Ok, got it. Thanks for checking things out a bit!
4 years, 3 months ago (2016-09-07 20:02:43 UTC) #15
mikecirone
Uploaded new patch set that adds "// namespace net" to end of new namespace blocks. ...
4 years, 3 months ago (2016-09-07 21:35:42 UTC) #16
eroman
lgtm
4 years, 3 months ago (2016-09-07 22:00:39 UTC) #17
eroman
Adding TBRs for the files outside of //net, which are just simple renames as follows: ...
4 years, 3 months ago (2016-09-07 22:15:54 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2315613002/40001
4 years, 3 months ago (2016-09-07 22:16:49 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/276074) win_clang on master.tryserver.chromium.win (JOB_FAILED, ...
4 years, 3 months ago (2016-09-07 23:10:08 UTC) #23
mikecirone
Hmm, curious that the old "TYPE_" naming straggled through, as seen in the failed windows ...
4 years, 3 months ago (2016-09-08 00:43:02 UTC) #24
eroman
Yes go ahead and make the speculative fixes. We can send it to the trybots ...
4 years, 3 months ago (2016-09-08 02:22:56 UTC) #25
mikecirone
Ok! I've done the fixes. I regex-dug around the codebase with this: NetLog\w*::(?:TYPE|SOURCE|PHASE) And I ...
4 years, 3 months ago (2016-09-08 04:14:09 UTC) #26
eroman
https://codereview.chromium.org/2315613002/diff/60001/net/socket/tcp_socket_win.cc File net/socket/tcp_socket_win.cc (right): https://codereview.chromium.org/2315613002/diff/60001/net/socket/tcp_socket_win.cc#newcode694 net/socket/tcp_socket_win.cc:694: NetLogEventType::TCP_ACCEPT, net_error); This formatting looks strange. Did you run ...
4 years, 3 months ago (2016-09-08 05:26:45 UTC) #30
mikecirone
https://codereview.chromium.org/2315613002/diff/60001/net/socket/tcp_socket_win.cc File net/socket/tcp_socket_win.cc (right): https://codereview.chromium.org/2315613002/diff/60001/net/socket/tcp_socket_win.cc#newcode694 net/socket/tcp_socket_win.cc:694: NetLogEventType::TCP_ACCEPT, net_error); Ok, I just ran "git cl format". ...
4 years, 3 months ago (2016-09-08 06:39:22 UTC) #31
eroman
patchset#5 LGTM
4 years, 3 months ago (2016-09-08 16:43:49 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2315613002/80001
4 years, 3 months ago (2016-09-08 16:44:34 UTC) #34
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 3 months ago (2016-09-08 19:12:25 UTC) #36
commit-bot: I haz the power
4 years, 3 months ago (2016-09-08 19:17:34 UTC) #38
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/8b85c43f674d711380f660fea44a19653622ac61
Cr-Commit-Position: refs/heads/master@{#417358}

Powered by Google App Engine
This is Rietveld 408576698