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

Issue 344026: Add LoadLog to ClientSocket::Connect(). (Closed)

Created:
11 years, 1 month ago by willchan no longer on Chromium
Modified:
9 years, 7 months ago
Reviewers:
eroman
CC:
chromium-reviews_googlegroups.com
Visibility:
Public.

Description

Add LoadLog to ClientSocket::Connect(). TODO: Use LoadLog in FLIP code. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=30765

Patch Set 1 #

Total comments: 8

Patch Set 2 : Add tests, address eroman comments. #

Total comments: 11

Patch Set 3 : Address more comments. #

Patch Set 4 : Add unittests. #

Total comments: 4

Patch Set 5 : ExpectLogContains=>EXPECT_TRUE(LogContains(...)) #

Patch Set 6 : Address comments. #

Patch Set 7 : Minor build fixups and fixed mac bug. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+552 lines, -209 lines) Patch
M chrome/browser/sync/notifier/communicator/ssl_socket_adapter.h View 1 2 chunks +6 lines, -1 line 0 comments Download
M chrome/browser/sync/notifier/communicator/ssl_socket_adapter.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M net/base/load_log_event_type_list.h View 2 chunks +16 lines, -1 line 0 comments Download
M net/base/load_log_unittest.h View 4 5 6 2 chunks +24 lines, -0 lines 0 comments Download
M net/flip/flip_session.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/ftp/ftp_network_transaction.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M net/http/http_network_transaction.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/socket/client_socket.h View 2 chunks +3 lines, -1 line 0 comments Download
M net/socket/client_socket_pool_base_unittest.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/socket/socket_test_util.h View 4 chunks +5 lines, -3 lines 0 comments Download
M net/socket/socket_test_util.cc View 2 chunks +5 lines, -3 lines 0 comments Download
M net/socket/socks5_client_socket.h View 3 chunks +5 lines, -2 lines 0 comments Download
M net/socket/socks5_client_socket.cc View 1 5 chunks +16 lines, -4 lines 0 comments Download
M net/socket/socks5_client_socket_unittest.cc View 2 3 4 5 9 chunks +46 lines, -8 lines 0 comments Download
M net/socket/socks_client_socket.h View 3 chunks +5 lines, -2 lines 0 comments Download
M net/socket/socks_client_socket.cc View 1 5 chunks +16 lines, -4 lines 0 comments Download
M net/socket/socks_client_socket_unittest.cc View 2 3 4 5 9 chunks +45 lines, -9 lines 0 comments Download
M net/socket/ssl_client_socket_mac.h View 1 4 chunks +7 lines, -1 line 0 comments Download
M net/socket/ssl_client_socket_mac.cc View 1 2 3 4 5 6 5 chunks +119 lines, -95 lines 0 comments Download
M net/socket/ssl_client_socket_nss.h View 1 4 chunks +7 lines, -1 line 0 comments Download
M net/socket/ssl_client_socket_nss.cc View 1 5 chunks +30 lines, -9 lines 0 comments Download
M net/socket/ssl_client_socket_unittest.cc View 2 3 4 5 15 chunks +37 lines, -12 lines 0 comments Download
M net/socket/ssl_client_socket_win.h View 1 2 3 4 5 4 chunks +7 lines, -1 line 0 comments Download
M net/socket/ssl_client_socket_win.cc View 1 2 3 4 5 4 chunks +29 lines, -7 lines 0 comments Download
M net/socket/tcp_client_socket_libevent.h View 1 4 chunks +8 lines, -1 line 0 comments Download
M net/socket/tcp_client_socket_libevent.cc View 1 2 7 chunks +32 lines, -10 lines 0 comments Download
M net/socket/tcp_client_socket_pool.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/socket/tcp_client_socket_pool_unittest.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M net/socket/tcp_client_socket_unittest.cc View 2 3 4 5 7 chunks +15 lines, -6 lines 0 comments Download
M net/socket/tcp_client_socket_win.h View 1 2 4 chunks +8 lines, -1 line 0 comments Download
M net/socket/tcp_client_socket_win.cc View 1 2 6 chunks +38 lines, -8 lines 0 comments Download
M net/socket/tcp_pinger.h View 1 chunk +1 line, -1 line 0 comments Download
M net/socket_stream/socket_stream.cc View 1 2 3 4 3 chunks +6 lines, -3 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
willchan no longer on Chromium
11 years, 1 month ago (2009-10-29 19:50:55 UTC) #1
willchan no longer on Chromium
On 2009/10/29 19:50:55, willchan wrote: > Woops, not ready for review, I forgot to build ...
11 years, 1 month ago (2009-10-29 20:13:33 UTC) #2
eroman
In general I like this change. One thing I am wandering, is what we want ...
11 years, 1 month ago (2009-10-29 21:37:16 UTC) #3
willchan no longer on Chromium
Tests fixed up. I've manually tested on Linux and it works fine for SSL and ...
11 years, 1 month ago (2009-10-29 23:35:40 UTC) #4
eroman
LGTM. It would be good to have verification for this. All of the tests I ...
11 years, 1 month ago (2009-10-30 01:03:05 UTC) #5
willchan no longer on Chromium
Addressed all the code comments. I'm not in a hurry to check this in, so ...
11 years, 1 month ago (2009-10-30 01:47:31 UTC) #6
eroman
lgtm
11 years, 1 month ago (2009-10-30 03:38:57 UTC) #7
willchan no longer on Chromium
I've added tests. Note that I've modified load_log_unittest.h since I wasn't completely satisfied with the ...
11 years, 1 month ago (2009-10-30 23:46:07 UTC) #8
eroman
LGTM. Nice improvement with AssertionResult. http://codereview.chromium.org/344026/diff/7002/8015 File net/socket/socks5_client_socket_unittest.cc (right): http://codereview.chromium.org/344026/diff/7002/8015#newcode130 Line 130: EXPECT_TRUE(LogContains(*log, log->events().size() - ...
11 years, 1 month ago (2009-11-02 19:11:38 UTC) #9
willchan no longer on Chromium
I'm waiting on trybot results, but plan on committing this afterward. Let me know if ...
11 years, 1 month ago (2009-11-02 21:31:06 UTC) #10
eroman
11 years, 1 month ago (2009-11-02 21:43:16 UTC) #11
LGTM

Powered by Google App Engine
This is Rietveld 408576698