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

Issue 188007: Web Socket support: Chromium IPC (Closed)

Created:
11 years, 3 months ago by ukai
Modified:
9 years, 7 months ago
CC:
chromium-reviews_googlegroups.com
Visibility:
Public.

Description

Web Socket support: Chromium IPC Add IPC messages used in SocketStreamHandle for Web Sockets. BUG=12497 TEST=none

Patch Set 1 #

Total comments: 18

Patch Set 2 : SendData is no more sync message #

Total comments: 4

Patch Set 3 : addressed michaeln comment #

Total comments: 18

Patch Set 4 : Addressed yuzo's comment #

Patch Set 5 : fix ViewMsg_SocketStrean_DataSent: CONTROL1->CONTROL2' #

Total comments: 15

Patch Set 6 : Fix ViewHostMsg_SocketStream_Connect async #

Patch Set 7 : use WebKit::WebData instead of std::vector<char> #

Total comments: 2

Patch Set 8 : revert previous change #

Patch Set 9 : s/DataSent/SentData/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+60 lines, -0 lines) Patch
M chrome/common/render_messages_internal.h View 1 2 3 4 5 6 7 8 2 chunks +60 lines, -0 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
ukai
These IPC messages are used for Web Sockets support. For more detailed design of Web ...
11 years, 3 months ago (2009-09-03 09:34:31 UTC) #1
tyoshino (SeeGerritForStatus)
http://codereview.chromium.org/188007/diff/1/2 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/1/2#newcode704 Line 704: // These messages from the browser to the ...
11 years, 3 months ago (2009-09-03 11:04:13 UTC) #2
jam
http://codereview.chromium.org/188007/diff/1/2 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/1/2#newcode1742 Line 1742: IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_SocketStream_SendData, Does this really need to be a ...
11 years, 3 months ago (2009-09-03 17:38:03 UTC) #3
ukai
http://codereview.chromium.org/188007/diff/1/2 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/1/2#newcode704 Line 704: // These messages from the browser to the ...
11 years, 3 months ago (2009-09-04 08:59:10 UTC) #4
michaeln
http://codereview.chromium.org/188007/diff/4002/4003 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/4002/4003#newcode718 Line 718: IPC_MESSAGE_CONTROL1(ViewMsg_SocketStream_CanSend, Consider calling this 'DataSent' since its delivered ...
11 years, 3 months ago (2009-09-05 18:19:51 UTC) #5
ukai
Thanks for review! http://codereview.chromium.org/188007/diff/4002/4003 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/4002/4003#newcode718 Line 718: IPC_MESSAGE_CONTROL1(ViewMsg_SocketStream_CanSend, On 2009/09/05 18:19:51, michaeln ...
11 years, 3 months ago (2009-09-07 07:41:08 UTC) #6
ukai
ping.
11 years, 3 months ago (2009-09-10 03:23:10 UTC) #7
Yuzo
Sorry, I've missed this somehow. http://codereview.chromium.org/188007/diff/5001/5002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/5001/5002#newcode708 Line 708: // The Socket ...
11 years, 3 months ago (2009-09-10 03:56:05 UTC) #8
ukai
http://codereview.chromium.org/188007/diff/5001/5002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/5001/5002#newcode708 Line 708: // The Socket Stream is connected. The SocketStreamHandle ...
11 years, 3 months ago (2009-09-10 08:19:29 UTC) #9
michaeln
http://codereview.chromium.org/188007/diff/5001/5002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/5001/5002#newcode724 Line 724: int /* amount_sent */) On 2009/09/10 03:56:06, Yuzo ...
11 years, 3 months ago (2009-09-10 23:40:49 UTC) #10
ukai
ping.
11 years, 3 months ago (2009-09-17 08:52:29 UTC) #11
tyoshino (SeeGerritForStatus)
LGTM http://codereview.chromium.org/188007/diff/10001/10002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/10001/10002#newcode723 Line 723: // |amount_sent| of data requested by ViewHostMsg_SocketStream_SendData ...
11 years, 3 months ago (2009-09-17 09:25:55 UTC) #12
Yuzo
LGTM http://codereview.chromium.org/188007/diff/5001/5002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/5001/5002#newcode712 Line 712: int /* socket_id */, I see. On ...
11 years, 3 months ago (2009-09-17 09:41:00 UTC) #13
darin (slow to review)
Sorry for the unacceptable delays. I will review this today!-Darin On Thu, Sep 17, 2009 ...
11 years, 3 months ago (2009-09-17 15:43:01 UTC) #14
darin (slow to review)
http://codereview.chromium.org/188007/diff/10001/10002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/10001/10002#newcode1770 Line 1770: IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_SocketStream_Connect, per jam's feedback, i thought the plan ...
11 years, 3 months ago (2009-09-17 21:45:33 UTC) #15
michaeln
http://codereview.chromium.org/188007/diff/10001/10002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/10001/10002#newcode1783 Line 1783: std::vector<char> /* data */) > however, looking over ...
11 years, 3 months ago (2009-09-18 08:34:19 UTC) #16
ukai
Thanks for review! http://codereview.chromium.org/188007/diff/10001/10002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/10001/10002#newcode723 Line 723: // |amount_sent| of data requested ...
11 years, 3 months ago (2009-09-18 12:04:20 UTC) #17
ukai
On 2009/09/18 12:04:20, ukai wrote: > Thanks for review! > > http://codereview.chromium.org/188007/diff/10001/10002 > File chrome/common/render_messages_internal.h ...
11 years, 2 months ago (2009-09-30 06:18:42 UTC) #18
darin (slow to review)
http://codereview.chromium.org/188007/diff/19001/20002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/19001/20002#newcode778 Line 778: WebKit::WebData /* data */) sorry, i did not ...
11 years, 2 months ago (2009-09-30 08:03:12 UTC) #19
ukai
Thanks for review. http://codereview.chromium.org/188007/diff/19001/20002 File chrome/common/render_messages_internal.h (right): http://codereview.chromium.org/188007/diff/19001/20002#newcode778 Line 778: WebKit::WebData /* data */) On ...
11 years, 2 months ago (2009-09-30 08:53:30 UTC) #20
ukai
ping On 2009/09/30 08:53:30, ukai wrote: > Thanks for review. > > http://codereview.chromium.org/188007/diff/19001/20002 > File ...
11 years, 2 months ago (2009-10-02 08:53:34 UTC) #21
michaeln
Given... > (i think it is probably fine to leave this as you originally had ...
11 years, 2 months ago (2009-10-02 21:11:50 UTC) #22
michaeln
Still LGTM... and SentData is better :)
11 years, 2 months ago (2009-10-09 06:33:56 UTC) #23
ukai
11 years, 2 months ago (2009-10-09 11:04:01 UTC) #24
On 2009/10/09 06:33:56, michaeln wrote:
> Still LGTM... and SentData is better :)

Thanks for review!
Since no comment long time, landed this CL.

Powered by Google App Engine
This is Rietveld 408576698