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

Issue 45183002: Expose the p2p client in content/public (Closed)

Created:
7 years, 1 month ago by hubbe
Modified:
7 years ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, miu+watch_chromium.org
Visibility:
Public.

Description

This CL is in preparation for making a public way for the media/cast library to access the p2p sockets. As of yet, there is no factory methods, that will be added in a later CL. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=238553

Patch Set 1 #

Patch Set 2 : missed a file #

Total comments: 4

Patch Set 3 : some renaming #

Total comments: 21

Patch Set 4 : merge #

Patch Set 5 : merge #

Patch Set 6 : (most) comments addressed #

Total comments: 6

Patch Set 7 : (most) comments addressed #

Total comments: 4

Patch Set 8 : comments addressed #

Patch Set 9 : fix gyp file #

Unified diffs Side-by-side diffs Delta from patch set Stats (+243 lines, -494 lines) Patch
content/browser/renderer_host/p2p/socket_dispatcher_host.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host_udp.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/common/p2p_messages.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
D content/common/p2p_sockets.h View 1 1 chunk +0 lines, -28 lines 0 comments Download
M content/content_common.gypi View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
M content/content_renderer.gypi View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
A + content/public/common/p2p_socket_type.h View 1 2 3 4 5 2 chunks +3 lines, -3 lines 0 comments Download
A content/public/renderer/p2p_socket_client.h View 1 2 3 4 5 6 7 1 chunk +60 lines, -0 lines 0 comments Download
A content/public/renderer/p2p_socket_client_delegate.h View 1 2 3 4 5 1 chunk +45 lines, -0 lines 0 comments Download
M content/renderer/p2p/ipc_socket_factory.cc View 1 2 3 4 5 6 7 10 chunks +22 lines, -15 lines 0 comments Download
M content/renderer/p2p/socket_client.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -134 lines 0 comments Download
M content/renderer/p2p/socket_client.cc View 1 2 3 4 5 6 7 1 chunk +0 lines, -212 lines 0 comments Download
A + content/renderer/p2p/socket_client_impl.h View 1 2 3 4 5 6 7 4 chunks +24 lines, -40 lines 0 comments Download
A + content/renderer/p2p/socket_client_impl.cc View 1 2 3 4 5 6 7 8 chunks +65 lines, -37 lines 0 comments Download
M content/renderer/p2p/socket_dispatcher.h View 1 2 3 4 5 5 chunks +6 lines, -6 lines 0 comments Download
M content/renderer/p2p/socket_dispatcher.cc View 1 2 3 4 5 6 7 6 chunks +10 lines, -10 lines 0 comments Download

Messages

Total messages: 25 (0 generated)
hubbe
7 years, 1 month ago (2013-10-25 19:35:32 UTC) #1
Alpha Left Google
https://codereview.chromium.org/45183002/diff/50001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/50001/content/public/renderer/socket_client.h#newcode1 content/public/renderer/socket_client.h:1: // Copyright (c) 2011 The Chromium Authors. All rights ...
7 years, 1 month ago (2013-10-25 20:07:51 UTC) #2
hubbe
https://codereview.chromium.org/45183002/diff/50001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/50001/content/public/renderer/socket_client.h#newcode1 content/public/renderer/socket_client.h:1: // Copyright (c) 2011 The Chromium Authors. All rights ...
7 years, 1 month ago (2013-10-25 21:26:57 UTC) #3
Alpha Left Google
LGTM after the renaming is done. https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h#newcode1 content/public/renderer/socket_client.h:1: // Copyright (c) ...
7 years, 1 month ago (2013-10-25 21:28:47 UTC) #4
hubbe
Adding OWNERS & security review people.
7 years, 1 month ago (2013-10-25 21:31:38 UTC) #5
Tom Sepez
On 2013/10/25 21:31:38, hubbe wrote: > Adding OWNERS & security review people. LGTM for p2p_messages.h
7 years, 1 month ago (2013-10-25 21:34:23 UTC) #6
jam
I prefer not to review changes to content/public without seeing the caller, otherwise it's hard ...
7 years, 1 month ago (2013-10-25 23:14:14 UTC) #7
hubbe1
The caller is not written yet. There will be some code in chrome/render/media that glues ...
7 years, 1 month ago (2013-10-25 23:27:08 UTC) #8
hubbe
Rough client for this code in: https://codereview.chromium.org/66293003/ PTAL. /Hubbe On 2013/10/25 23:27:08, hubbe1 wrote: > ...
7 years, 1 month ago (2013-11-09 00:12:50 UTC) #9
hubbe
Ping? Jam? /Hubbe On 2013/11/09 00:12:50, hubbe wrote: > Rough client for this code in: ...
7 years, 1 month ago (2013-11-12 17:59:58 UTC) #10
Alpha Left Google
Please fix the CL description to be the following format: <title> <empty line> <description> Lines ...
7 years, 1 month ago (2013-11-13 23:25:27 UTC) #11
hubbe
Ping?
7 years, 1 month ago (2013-11-19 02:44:51 UTC) #12
jam
where's the factory method? https://codereview.chromium.org/45183002/diff/140001/content/public/common/p2p_sockets.h File content/public/common/p2p_sockets.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/common/p2p_sockets.h#newcode1 content/public/common/p2p_sockets.h:1: // Copyright (c) 2011 The ...
7 years, 1 month ago (2013-11-20 23:26:24 UTC) #13
hubbe
https://codereview.chromium.org/45183002/diff/140001/content/public/common/p2p_sockets.h File content/public/common/p2p_sockets.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/common/p2p_sockets.h#newcode1 content/public/common/p2p_sockets.h:1: // Copyright (c) 2011 The Chromium Authors. All rights ...
7 years, 1 month ago (2013-11-21 22:07:30 UTC) #14
jam
https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h#newcode21 content/public/renderer/socket_client.h:21: // thread which is specified in Init(). On 2013/11/21 ...
7 years, 1 month ago (2013-11-23 02:03:13 UTC) #15
hubbe
https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h#newcode21 content/public/renderer/socket_client.h:21: // thread which is specified in Init(). On 2013/11/23 ...
7 years ago (2013-11-25 19:15:07 UTC) #16
jam
https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h#newcode21 content/public/renderer/socket_client.h:21: // thread which is specified in Init(). On 2013/11/25 ...
7 years ago (2013-11-27 21:30:17 UTC) #17
hubbe
PTAL https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h#newcode21 content/public/renderer/socket_client.h:21: // thread which is specified in Init(). On ...
7 years ago (2013-11-27 23:23:01 UTC) #18
jam
lgtm https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h File content/public/renderer/socket_client.h (right): https://codereview.chromium.org/45183002/diff/140001/content/public/renderer/socket_client.h#newcode21 content/public/renderer/socket_client.h:21: // thread which is specified in Init(). On ...
7 years ago (2013-11-28 00:08:56 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hubbe@chromium.org/45183002/460001
7 years ago (2013-11-28 08:39:15 UTC) #20
commit-bot: I haz the power
Retried try job too often on win for step(s) compile http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win&number=129781
7 years ago (2013-11-28 09:23:02 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hubbe@chromium.org/45183002/480001
7 years ago (2013-12-03 18:46:41 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hubbe@chromium.org/45183002/480001
7 years ago (2013-12-03 19:08:58 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hubbe@chromium.org/45183002/480001
7 years ago (2013-12-03 23:33:13 UTC) #24
commit-bot: I haz the power
7 years ago (2013-12-04 04:02:32 UTC) #25
Message was sent while issue was closed.
Change committed as 238553

Powered by Google App Engine
This is Rietveld 408576698