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

Issue 138753004: Cast: IPC glue between cast library transport and encoders. (Closed)

Created:
6 years, 11 months ago by hubbe
Modified:
6 years, 10 months ago
CC:
chromium-reviews, hclam+watch_chromium.org, pwestin+watch_google.com, mikhal+watch_chromium.org, fischman+watch_chromium.org, jasonroberts+watch_google.com, jam, mcasas+watch_chromium.org, joi+watch-content_chromium.org, feature-media-reviews_chromium.org, hguihot+watch_chromium.org, darin-cc_chromium.org, wjia+watch_chromium.org, hubbe+watch_chromium.org, miu+watch_chromium.org, scherkus (not reviewing)
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

IPC glue between cast library transport and encoders. This CL lets the cast library run the packetizing and encryption in the browser and the video and audio encoding in the renderer. The encoded data is sent over IPC to the browser. BUG=301920 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=251592

Patch Set 1 #

Patch Set 2 : remote address not needed in new message #

Total comments: 16

Patch Set 3 : first set of comments addressed, plus some other minor things #

Patch Set 4 : merged #

Patch Set 5 : might work, but needs tests #

Patch Set 6 : might work, but needs tests #

Patch Set 7 : might work, but needs tests #

Patch Set 8 : almost there... #

Patch Set 9 : works #

Patch Set 10 : works #

Total comments: 20

Patch Set 11 : nits fixed, test added #

Patch Set 12 : more tests #

Total comments: 2

Patch Set 13 : added rtp statistics callbacks #

Total comments: 46

Patch Set 14 : most comments addressed #

Patch Set 15 : more cleanup, maybe #

Patch Set 16 : let's see if this works better #

Patch Set 17 : let's see if this works #

Patch Set 18 : revert ip_endpoint changes #

Patch Set 19 : merged #

Patch Set 20 : add dep instead of export #

Total comments: 4

Patch Set 21 : sorted deps #

Total comments: 60

Patch Set 22 : merged #

Patch Set 23 : all comments addressed #

Patch Set 24 : test error corrected #

Patch Set 25 : test error corrected #

Patch Set 26 : test error corrected #

Patch Set 27 : fix another test #

Patch Set 28 : merged #

Patch Set 29 : merged correctly (instead of incorrectly) #

Total comments: 32

Patch Set 30 : nits fixed #

Patch Set 31 : nits fixed #

Patch Set 32 : nits fixed #

Patch Set 33 : merged #

Patch Set 34 : fixed threading issues, fixed an asan bug in cast library, fixed tests #

Total comments: 4

Patch Set 35 : simplified destructor #

Patch Set 36 : got rid of extra ref #

Total comments: 3

Patch Set 37 : changed to dcheck in destructor #

Patch Set 38 : reject rtcp packets that are too large #

Total comments: 2

Patch Set 39 : minor cleanup #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1126 lines, -136 lines) Patch
M chrome/browser/chrome_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/media/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -0 lines 0 comments Download
A chrome/browser/media/cast_transport_host_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +73 lines, -0 lines 0 comments Download
A chrome/browser/media/cast_transport_host_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +172 lines, -0 lines 0 comments Download
A chrome/browser/media/cast_transport_host_filter_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +161 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +4 lines, -1 line 0 comments Download
M chrome/chrome_renderer.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 28 29 30 31 32 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -0 lines 0 comments Download
A chrome/common/cast_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +140 lines, -0 lines 0 comments Download
M chrome/common/common_message_generator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 chunks +3 lines, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -0 lines 0 comments Download
A chrome/renderer/media/cast_ipc_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +63 lines, -0 lines 0 comments Download
A chrome/renderer/media/cast_ipc_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +117 lines, -0 lines 0 comments Download
M chrome/renderer/media/cast_session.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +3 lines, -1 line 0 comments Download
M chrome/renderer/media/cast_session.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +11 lines, -0 lines 0 comments Download
M chrome/renderer/media/cast_session_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/media/cast_session_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +12 lines, -4 lines 0 comments Download
M chrome/renderer/media/cast_session_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 6 chunks +58 lines, -61 lines 0 comments Download
A chrome/renderer/media/cast_transport_sender_ipc.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +74 lines, -0 lines 0 comments Download
A chrome/renderer/media/cast_transport_sender_ipc.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +125 lines, -0 lines 0 comments Download
M chrome/renderer/media/cast_udp_transport.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +2 lines, -0 lines 0 comments Download
M content/common/content_param_traits.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -8 lines 0 comments Download
M content/common/content_param_traits.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -19 lines 0 comments Download
M content/public/common/common_param_traits.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +9 lines, -0 lines 0 comments Download
M content/public/common/common_param_traits.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +20 lines, -0 lines 0 comments Download
M ipc/ipc_message_start.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M media/cast/audio_sender/audio_sender.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +1 line, -1 line 0 comments Download
M media/cast/rtcp/rtcp_defines.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +0 lines, -1 line 0 comments Download
M media/cast/transport/cast_transport_config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +11 lines, -1 line 0 comments Download
M media/cast/transport/cast_transport_config.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +5 lines, -0 lines 0 comments Download
M media/cast/transport/cast_transport_defines.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +0 lines, -1 line 0 comments Download
M media/cast/transport/cast_transport_sender.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -1 line 0 comments Download
M media/cast/transport/rtcp/rtcp_builder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 chunk +5 lines, -9 lines 0 comments Download
M media/cast/transport/rtcp/rtcp_builder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 9 chunks +36 lines, -24 lines 0 comments Download
M media/cast/transport/rtp_sender/rtp_sender.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 2 chunks +2 lines, -1 line 0 comments Download
M media/cast/transport/rtp_sender/rtp_sender.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +1 line, -1 line 0 comments Download
M media/cast/video_sender/video_sender.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 51 (0 generated)
mikhal1
https://codereview.chromium.org/138753004/diff/30001/chrome/browser/media/cast_net_host_filter.cc File chrome/browser/media/cast_net_host_filter.cc (right): https://codereview.chromium.org/138753004/diff/30001/chrome/browser/media/cast_net_host_filter.cc#newcode3 chrome/browser/media/cast_net_host_filter.cc:3: // found in the LICENSE file. add new line ...
6 years, 11 months ago (2014-01-23 21:04:38 UTC) #1
hubbe
Lots of changes, actually works now. (Both simple unit tests and mirring to cast_receiver_app) https://codereview.chromium.org/138753004/diff/30001/chrome/browser/media/cast_net_host_filter.cc ...
6 years, 10 months ago (2014-02-03 22:58:59 UTC) #2
hubbe
On 2014/02/03 22:58:59, hubbe wrote: > Lots of changes, actually works now. > (Both simple ...
6 years, 10 months ago (2014-02-05 00:09:24 UTC) #3
mikhal1
First set of comments - mainly nits. Will take another look later. -Mikhal https://codereview.chromium.org/138753004/diff/250001/chrome/browser/media/cast_transport_host_filter.cc File ...
6 years, 10 months ago (2014-02-05 00:53:04 UTC) #4
hubbe
https://codereview.chromium.org/138753004/diff/250001/chrome/browser/media/cast_transport_host_filter.cc File chrome/browser/media/cast_transport_host_filter.cc (right): https://codereview.chromium.org/138753004/diff/250001/chrome/browser/media/cast_transport_host_filter.cc#newcode46 chrome/browser/media/cast_transport_host_filter.cc:46: On 2014/02/05 00:53:05, mikhal1 wrote: > nit: rm new ...
6 years, 10 months ago (2014-02-05 01:11:44 UTC) #5
mikhal1
lgtm + 1 comment https://chromiumcodereview.appspot.com/138753004/diff/470001/chrome/renderer/media/cast_session_delegate.cc File chrome/renderer/media/cast_session_delegate.cc (right): https://chromiumcodereview.appspot.com/138753004/diff/470001/chrome/renderer/media/cast_session_delegate.cc#newcode83 chrome/renderer/media/cast_session_delegate.cc:83: if (!audio_configured_ || !video_configured_ || ...
6 years, 10 months ago (2014-02-05 21:09:42 UTC) #6
hubbe
https://chromiumcodereview.appspot.com/138753004/diff/470001/chrome/renderer/media/cast_session_delegate.cc File chrome/renderer/media/cast_session_delegate.cc (right): https://chromiumcodereview.appspot.com/138753004/diff/470001/chrome/renderer/media/cast_session_delegate.cc#newcode83 chrome/renderer/media/cast_session_delegate.cc:83: if (!audio_configured_ || !video_configured_ || !transport_configured_) On 2014/02/05 21:09:43, ...
6 years, 10 months ago (2014-02-05 21:14:53 UTC) #7
hubbe
Adding OWNERS and security reviewers, git cl owners came up with: jam: chrome/browser/media/DEPS chrome/browser/media/cast_transport_host_filter.cc chrome/browser/media/cast_transport_host_filter.h ...
6 years, 10 months ago (2014-02-06 22:42:30 UTC) #8
scherkus (not reviewing)
https://codereview.chromium.org/138753004/diff/700001/chrome/browser/media/cast_transport_host_filter.h File chrome/browser/media/cast_transport_host_filter.h (right): https://codereview.chromium.org/138753004/diff/700001/chrome/browser/media/cast_transport_host_filter.h#newcode72 chrome/browser/media/cast_transport_host_filter.h:72: #endif // CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_ nit: extra blank line before the ...
6 years, 10 months ago (2014-02-07 00:11:04 UTC) #9
hubbe
https://codereview.chromium.org/138753004/diff/700001/chrome/browser/media/cast_transport_host_filter.h File chrome/browser/media/cast_transport_host_filter.h (right): https://codereview.chromium.org/138753004/diff/700001/chrome/browser/media/cast_transport_host_filter.h#newcode72 chrome/browser/media/cast_transport_host_filter.h:72: #endif // CHROME_BROWSER_MEDIA_CAST_TRANSPORT_HOST_FILTER_H_ On 2014/02/07 00:11:06, scherkus wrote: > ...
6 years, 10 months ago (2014-02-07 00:52:21 UTC) #10
scherkus (not reviewing)
passing this off to acolwell@ for media-ish reviews (I'm going OOO) https://codereview.chromium.org/138753004/diff/700001/chrome/renderer/media/cast_transport_sender_ipc.h File chrome/renderer/media/cast_transport_sender_ipc.h (right): ...
6 years, 10 months ago (2014-02-07 01:15:28 UTC) #11
hubbe
For your convenience, git cl owners came up with this division, but feel free to ...
6 years, 10 months ago (2014-02-07 22:27:46 UTC) #12
hubbe
On 2014/02/07 22:27:46, hubbe wrote: > For your convenience, git cl owners came up with ...
6 years, 10 months ago (2014-02-07 22:46:28 UTC) #13
hubbe
On 2014/02/07 22:46:28, hubbe wrote: > On 2014/02/07 22:27:46, hubbe wrote: > > For your ...
6 years, 10 months ago (2014-02-08 00:22:09 UTC) #14
hubbe
Adding joi for content/public changes.
6 years, 10 months ago (2014-02-10 18:50:14 UTC) #15
sky
There are better local OWNERS, meaning pick and owner from chrome/browser/media and chrome/renderer/media. Additionally the ...
6 years, 10 months ago (2014-02-10 21:56:44 UTC) #16
hubbe
-cevans, +palmer
6 years, 10 months ago (2014-02-10 22:35:55 UTC) #17
hubbe
-cevans, +palmer
6 years, 10 months ago (2014-02-10 22:35:56 UTC) #18
hubbe
-joi +avi Sky: I also need you to look at chrome/common/common/message_generator.h https://codereview.chromium.org/138753004/diff/1280001/chrome/chrome_browser.gypi File chrome/chrome_browser.gypi (right): ...
6 years, 10 months ago (2014-02-10 22:50:06 UTC) #19
hubbe
New OWNER list update: Sky: chrome/common/DEPS chrome/common/common_message_generator.h chrome/renderer/chrome_content_renderer_client.cc chrome/renderer/chrome_content_renderer_client.h palmer: chrome/common/cast_messages.h ipc/ipc_message_start.h avi: content/common/content_param_traits.cc content/common/content_param_traits.h ...
6 years, 10 months ago (2014-02-10 22:55:28 UTC) #20
Avi (use Gerrit)
content/common/content_param_traits.cc content/common/content_param_traits.h content/public/common/common_param_traits.cc content/public/common/common_param_traits.h LGTM
6 years, 10 months ago (2014-02-10 22:59:53 UTC) #21
sky
Said files LGTM
6 years, 10 months ago (2014-02-10 23:17:11 UTC) #22
palmer
https://codereview.chromium.org/138753004/diff/1360001/chrome/browser/media/cast_transport_host_filter.cc File chrome/browser/media/cast_transport_host_filter.cc (right): https://codereview.chromium.org/138753004/diff/1360001/chrome/browser/media/cast_transport_host_filter.cc#newcode95 chrome/browser/media/cast_transport_host_filter.cc:95: void CastTransportHostFilter::OnDelete( Nit: This could fit on one line. ...
6 years, 10 months ago (2014-02-11 00:50:03 UTC) #23
acolwell GONE FROM CHROMIUM
Here is my first round of comments. https://codereview.chromium.org/138753004/diff/1360001/chrome/browser/media/cast_transport_host_filter.cc File chrome/browser/media/cast_transport_host_filter.cc (right): https://codereview.chromium.org/138753004/diff/1360001/chrome/browser/media/cast_transport_host_filter.cc#newcode1 chrome/browser/media/cast_transport_host_filter.cc:1: // Copyright ...
6 years, 10 months ago (2014-02-11 00:57:36 UTC) #24
hubbe
PTAL https://codereview.chromium.org/138753004/diff/1360001/chrome/browser/media/cast_transport_host_filter.cc File chrome/browser/media/cast_transport_host_filter.cc (right): https://codereview.chromium.org/138753004/diff/1360001/chrome/browser/media/cast_transport_host_filter.cc#newcode1 chrome/browser/media/cast_transport_host_filter.cc:1: // Copyright (c) 2013 The Chromium Authors. All ...
6 years, 10 months ago (2014-02-12 00:54:23 UTC) #25
acolwell GONE FROM CHROMIUM
lgtm % nits https://codereview.chromium.org/138753004/diff/1920001/chrome/browser/media/cast_transport_host_filter.cc File chrome/browser/media/cast_transport_host_filter.cc (right): https://codereview.chromium.org/138753004/diff/1920001/chrome/browser/media/cast_transport_host_filter.cc#newcode1 chrome/browser/media/cast_transport_host_filter.cc:1: // Copyright (c) 2014 The Chromium ...
6 years, 10 months ago (2014-02-13 19:28:57 UTC) #26
palmer
""" > What is the intended structure of this string? > > Can the recipient ...
6 years, 10 months ago (2014-02-13 20:27:44 UTC) #27
hubbe
On 2014/02/13 20:27:44, Chromium Palmer wrote: > """ > > What is the intended structure ...
6 years, 10 months ago (2014-02-13 23:33:47 UTC) #28
hubbe
PTAL (Having some trouble with uploads, let me know if anything seems to be missing.) ...
6 years, 10 months ago (2014-02-14 00:03:22 UTC) #29
acolwell GONE FROM CHROMIUM
please reupload the patch. The base files don't appear to be present.
6 years, 10 months ago (2014-02-14 01:47:35 UTC) #30
acolwell GONE FROM CHROMIUM
https://codereview.chromium.org/138753004/diff/1920001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/1920001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode11 chrome/renderer/media/cast_ipc_dispatcher.cc:11: CastIPCDispatcher* CastIPCDispatcher::global_instance_ = NULL; On 2014/02/14 00:03:24, hubbe wrote: ...
6 years, 10 months ago (2014-02-14 02:17:17 UTC) #31
hubbe
PTAL https://codereview.chromium.org/138753004/diff/1920001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/1920001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode11 chrome/renderer/media/cast_ipc_dispatcher.cc:11: CastIPCDispatcher* CastIPCDispatcher::global_instance_ = NULL; On 2014/02/14 02:17:18, acolwell ...
6 years, 10 months ago (2014-02-14 19:34:45 UTC) #32
acolwell GONE FROM CHROMIUM
Almost there. https://codereview.chromium.org/138753004/diff/2230001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/2230001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode26 chrome/renderer/media/cast_ipc_dispatcher.cc:26: // Option 2: Something went wrong before ...
6 years, 10 months ago (2014-02-14 20:45:19 UTC) #33
hubbe
https://codereview.chromium.org/138753004/diff/2230001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/2230001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode26 chrome/renderer/media/cast_ipc_dispatcher.cc:26: // Option 2: Something went wrong before we got ...
6 years, 10 months ago (2014-02-14 20:58:05 UTC) #34
acolwell GONE FROM CHROMIUM
After our offline conversation, I'm fine with these changes. lgtm https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode23 ...
6 years, 10 months ago (2014-02-14 23:09:26 UTC) #35
hubbe
Palmer, you're up... https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode23 chrome/renderer/media/cast_ipc_dispatcher.cc:23: global_instance_ = NULL; On 2014/02/14 23:09:28, ...
6 years, 10 months ago (2014-02-14 23:13:09 UTC) #36
hubbe
https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc File chrome/renderer/media/cast_ipc_dispatcher.cc (right): https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode23 chrome/renderer/media/cast_ipc_dispatcher.cc:23: global_instance_ = NULL; On 2014/02/14 23:09:28, acolwell wrote: > ...
6 years, 10 months ago (2014-02-14 23:39:56 UTC) #37
palmer
IPC security LGTM but you might want to avoid code duplication before committing (see comment). ...
6 years, 10 months ago (2014-02-14 23:52:59 UTC) #38
hubbe
https://codereview.chromium.org/138753004/diff/2610001/media/cast/transport/rtcp/rtcp_builder.cc File media/cast/transport/rtcp/rtcp_builder.cc (right): https://codereview.chromium.org/138753004/diff/2610001/media/cast/transport/rtcp/rtcp_builder.cc#newcode103 media/cast/transport/rtcp/rtcp_builder.cc:103: if (start_size + 12 + c_name_.length() > kMaxIpPacketSize) return ...
6 years, 10 months ago (2014-02-15 00:00:17 UTC) #39
hubbe
The CQ bit was checked by hubbe@chromium.org
6 years, 10 months ago (2014-02-15 00:00:39 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hubbe@chromium.org/138753004/2650001
6 years, 10 months ago (2014-02-15 00:17:08 UTC) #41
hubbe
The CQ bit was unchecked by hubbe@chromium.org
6 years, 10 months ago (2014-02-15 00:19:27 UTC) #42
hubbe
The CQ bit was checked by hubbe@chromium.org
6 years, 10 months ago (2014-02-15 00:19:27 UTC) #43
acolwell GONE FROM CHROMIUM
On 2014/02/14 23:39:56, hubbe wrote: > https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc > File chrome/renderer/media/cast_ipc_dispatcher.cc (right): > > https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc#newcode23 > ...
6 years, 10 months ago (2014-02-15 00:47:53 UTC) #44
hubbe
On 2014/02/15 00:47:53, acolwell wrote: > On 2014/02/14 23:39:56, hubbe wrote: > > > https://codereview.chromium.org/138753004/diff/2560001/chrome/renderer/media/cast_ipc_dispatcher.cc ...
6 years, 10 months ago (2014-02-15 00:50:48 UTC) #45
acolwell GONE FROM CHROMIUM
On 2014/02/15 00:50:48, hubbe wrote: > On 2014/02/15 00:47:53, acolwell wrote: > > On 2014/02/14 ...
6 years, 10 months ago (2014-02-15 02:36:32 UTC) #46
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 10 months ago (2014-02-15 04:17:20 UTC) #47
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=264965
6 years, 10 months ago (2014-02-15 04:17:21 UTC) #48
Alpha Left Google
The CQ bit was checked by hclam@chromium.org
6 years, 10 months ago (2014-02-15 18:31:05 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hubbe@chromium.org/138753004/2650001
6 years, 10 months ago (2014-02-15 18:31:15 UTC) #50
commit-bot: I haz the power
6 years, 10 months ago (2014-02-15 19:45:19 UTC) #51
Message was sent while issue was closed.
Change committed as 251592

Powered by Google App Engine
This is Rietveld 408576698