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

Issue 342683002: Oilpan: Use weak processing to stop a closed RTCPeerConnection (Closed)

Created:
6 years, 6 months ago by keishi
Modified:
6 years, 6 months ago
CC:
blink-reviews, tommyw+watchlist_chromium.org
Project:
blink
Visibility:
Public.

Description

Oilpan: Use weak processing to stop a closed RTCPeerConnection BUG=373690 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=176481

Patch Set 1 #

Total comments: 2

Patch Set 2 : Fixed #

Total comments: 10

Patch Set 3 : Fixed #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+46 lines, -13 lines) Patch
M Source/modules/mediastream/RTCDataChannel.h View 1 3 chunks +12 lines, -3 lines 0 comments Download
M Source/modules/mediastream/RTCDataChannel.cpp View 1 2 3 chunks +30 lines, -5 lines 3 comments Download
M Source/modules/mediastream/RTCPeerConnection.cpp View 1 2 3 chunks +4 lines, -5 lines 0 comments Download

Messages

Total messages: 17 (0 generated)
keishi
6 years, 6 months ago (2014-06-18 08:11:50 UTC) #1
keishi
6 years, 6 months ago (2014-06-18 08:14:05 UTC) #2
Mads Ager (chromium)
https://codereview.chromium.org/342683002/diff/1/Source/modules/mediastream/RTCPeerConnection.cpp File Source/modules/mediastream/RTCPeerConnection.cpp (right): https://codereview.chromium.org/342683002/diff/1/Source/modules/mediastream/RTCPeerConnection.cpp#newcode746 Source/modules/mediastream/RTCPeerConnection.cpp:746: if (!visitor->isAlive(this) && m_closed) This will not work because ...
6 years, 6 months ago (2014-06-18 08:19:50 UTC) #3
keishi
https://codereview.chromium.org/342683002/diff/1/Source/modules/mediastream/RTCPeerConnection.cpp File Source/modules/mediastream/RTCPeerConnection.cpp (right): https://codereview.chromium.org/342683002/diff/1/Source/modules/mediastream/RTCPeerConnection.cpp#newcode746 Source/modules/mediastream/RTCPeerConnection.cpp:746: if (!visitor->isAlive(this) && m_closed) On 2014/06/18 08:19:50, Mads Ager ...
6 years, 6 months ago (2014-06-18 08:56:58 UTC) #4
Mads Ager (chromium)
LGTM https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp#newcode87 Source/modules/mediastream/RTCDataChannel.cpp:87: m_handler->setClient(0); Do we need to guard this: if ...
6 years, 6 months ago (2014-06-18 09:09:26 UTC) #5
haraken
LGTM. https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp#newcode87 Source/modules/mediastream/RTCDataChannel.cpp:87: m_handler->setClient(0); On 2014/06/18 09:09:26, Mads Ager (chromium) wrote: ...
6 years, 6 months ago (2014-06-18 09:17:09 UTC) #6
Mads Ager (chromium)
https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp#newcode332 Source/modules/mediastream/RTCDataChannel.cpp:332: visitor->trace(m_connection); On 2014/06/18 09:17:08, haraken wrote: > > You ...
6 years, 6 months ago (2014-06-18 09:32:45 UTC) #7
Mads Ager (chromium)
6 years, 6 months ago (2014-06-18 09:32:46 UTC) #8
keishi
https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/20001/Source/modules/mediastream/RTCDataChannel.cpp#newcode87 Source/modules/mediastream/RTCDataChannel.cpp:87: m_handler->setClient(0); On 2014/06/18 09:09:26, Mads Ager (chromium) wrote: > ...
6 years, 6 months ago (2014-06-18 10:48:01 UTC) #9
Henrik Grunell
https://codereview.chromium.org/342683002/diff/40001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/40001/Source/modules/mediastream/RTCDataChannel.cpp#newcode94 Source/modules/mediastream/RTCDataChannel.cpp:94: ASSERT(m_stopped); I'm not sure why we would assert this?
6 years, 6 months ago (2014-06-18 11:49:14 UTC) #10
Mads Ager (chromium)
https://codereview.chromium.org/342683002/diff/40001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/40001/Source/modules/mediastream/RTCDataChannel.cpp#newcode94 Source/modules/mediastream/RTCDataChannel.cpp:94: ASSERT(m_stopped); On 2014/06/18 11:49:13, Henrik Grunell wrote: > I'm ...
6 years, 6 months ago (2014-06-18 12:35:13 UTC) #11
Henrik Grunell
https://codereview.chromium.org/342683002/diff/40001/Source/modules/mediastream/RTCDataChannel.cpp File Source/modules/mediastream/RTCDataChannel.cpp (right): https://codereview.chromium.org/342683002/diff/40001/Source/modules/mediastream/RTCDataChannel.cpp#newcode94 Source/modules/mediastream/RTCDataChannel.cpp:94: ASSERT(m_stopped); On 2014/06/18 12:35:13, Mads Ager (chromium) wrote: > ...
6 years, 6 months ago (2014-06-18 18:21:57 UTC) #12
Mads Ager (chromium)
On Wed, Jun 18, 2014 at 8:21 PM, <grunell@chromium.org> wrote: > > https://codereview.chromium.org/342683002/diff/40001/ > Source/modules/mediastream/RTCDataChannel.cpp ...
6 years, 6 months ago (2014-06-18 18:44:29 UTC) #13
Henrik Grunell
On 2014/06/18 18:44:29, Mads Ager (chromium) wrote: > On Wed, Jun 18, 2014 at 8:21 ...
6 years, 6 months ago (2014-06-18 19:40:25 UTC) #14
keishi
The CQ bit was checked by keishi@chromium.org
6 years, 6 months ago (2014-06-19 01:51:47 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/342683002/40001
6 years, 6 months ago (2014-06-19 01:52:59 UTC) #16
commit-bot: I haz the power
6 years, 6 months ago (2014-06-19 03:20:37 UTC) #17
Message was sent while issue was closed.
Change committed as 176481

Powered by Google App Engine
This is Rietveld 408576698