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

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed)

Created:
4 years, 9 months ago by ivoc
Modified:
4 years, 5 months ago
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, rwolff_gocast.it, hlundin-webrtc, yujie_mao (webrtc), Andrew MacDonald, henrika_webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, qiang.lu, niklas.enbom, peah-webrtc, minyue-webrtc, pbos-webrtc, mflodman
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Move RtcEventLog object from inside VoiceEngine to Call. In addition to moving the logging object itself, this also moves the interface from PeerConnectionFactory to PeerConnection, which makes more sense for this functionality. An API parameter to set an upper limit to the size of the logfile is introduced. The old interface on PeerConnectionFactory is not removed in this CL, because it is called from Chrome, it will be removed after Chrome is updated to use the PeerConnection interface. BUG=webrtc:4741, webrtc:5603, chromium:609749 R=solenberg@webrtc.org, stefan@webrtc.org, terelius@webrtc.org, tommi@webrtc.org Committed: https://crrev.com/1895526c6130e3d0e9b154f95079b8eda7567016 Cr-Commit-Position: refs/heads/master@{#13321}

Patch Set 1 : Initial version #

Patch Set 2 : Updated RTP/RTCP module to use setter methods instead of passing the event log pointer in the const… #

Total comments: 43

Patch Set 3 : Introduce proxy object for RtcEventLog and handle other comments. #

Total comments: 16

Patch Set 4 : Hid proxy object inside VoE Channel, and addressed other review comments. #

Patch Set 5 : Undid unneccessary changes to rtp_rtcp module. #

Total comments: 42

Patch Set 6 : Processed review comments and rebased. #

Total comments: 8

Patch Set 7 : Addressed Fredrik's comments. #

Patch Set 8 : Another rebase. #

Patch Set 9 : Fix for failing tests. #

Total comments: 2

Patch Set 10 : More fixes for bots. #

Total comments: 6

Patch Set 11 : Rebase and fix for small issue. #

Patch Set 12 : Rebase. #

Patch Set 13 : Fix for congestion controller unittests. #

Patch Set 14 : Rebase and fix for Invoke. #

Patch Set 15 : Rebase and added CreateNull function to create a no-op RtcEventLog for use in tests, and removed some construc… #

Patch Set 16 : Another rebase and accompanying changes. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+378 lines, -311 lines) Patch
M webrtc/api/java/src/org/webrtc/PeerConnection.java View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +23 lines, -0 lines 0 comments Download
M webrtc/api/java/src/org/webrtc/PeerConnectionFactory.java View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +0 lines, -28 lines 0 comments Download
M webrtc/api/peerconnection.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +11 lines, -0 lines 0 comments Download
M webrtc/api/peerconnection.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +22 lines, -0 lines 0 comments Download
M webrtc/api/peerconnectionfactory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +8 lines, -5 lines 0 comments Download
M webrtc/api/peerconnectionfactory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +0 lines, -11 lines 0 comments Download
M webrtc/api/peerconnectionfactoryproxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/api/peerconnectioninterface.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +20 lines, -15 lines 0 comments Download
M webrtc/api/peerconnectionproxy.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/audio/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +9 lines, -0 lines 0 comments Download
M webrtc/audio/audio_receive_stream.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/audio/audio_receive_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +4 lines, -1 line 0 comments Download
M webrtc/audio/audio_receive_stream_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 10 chunks +21 lines, -6 lines 0 comments Download
M webrtc/audio/audio_send_stream_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +4 lines, -1 line 0 comments Download
M webrtc/call.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +5 lines, -0 lines 0 comments Download
M webrtc/call/call.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 13 chunks +21 lines, -18 lines 0 comments Download
M webrtc/call/rtc_event_log.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/call/rtc_event_log.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +6 lines, -4 lines 0 comments Download
M webrtc/media/base/mediaengine.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +0 lines, -16 lines 0 comments Download
M webrtc/media/engine/fakewebrtccall.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/media/engine/fakewebrtccall.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +7 lines, -0 lines 0 comments Download
M webrtc/media/engine/fakewebrtcvoiceengine.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +0 lines, -1 line 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -8 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +0 lines, -22 lines 0 comments Download
M webrtc/modules/bitrate_controller/bitrate_controller_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +4 lines, -3 lines 0 comments Download
M webrtc/modules/bitrate_controller/bitrate_controller_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +12 lines, -12 lines 0 comments Download
M webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +13 lines, -2 lines 0 comments Download
M webrtc/modules/bitrate_controller/include/bitrate_controller.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -4 lines 0 comments Download
M webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +2 lines, -3 lines 0 comments Download
M webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc View 1 2 3 4 5 6 7 8 9 10 11 5 chunks +10 lines, -17 lines 0 comments Download
M webrtc/modules/bitrate_controller/send_side_bandwidth_estimation_unittest.cc View 1 2 3 4 5 6 7 8 2 chunks +8 lines, -2 lines 0 comments Download
M webrtc/modules/congestion_controller/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/congestion_controller/congestion_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +7 lines, -25 lines 0 comments Download
M webrtc/modules/congestion_controller/congestion_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +5 lines, -3 lines 0 comments Download
M webrtc/modules/congestion_controller/include/congestion_controller.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +4 lines, -7 lines 0 comments Download
M webrtc/modules/congestion_controller/include/mock/mock_congestion_controller.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +6 lines, -2 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/DEPS View 1 2 3 4 5 6 7 8 1 chunk +6 lines, -0 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/pc/channelmanager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -6 lines 0 comments Download
M webrtc/pc/channelmanager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -13 lines 0 comments Download
M webrtc/test/mock_voe_channel_proxy.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 webrtc/test/mock_voice_engine.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1 line 0 comments Download
M webrtc/voice_engine/channel.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +5 lines, -4 lines 0 comments Download
M webrtc/voice_engine/channel.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 8 chunks +93 lines, -13 lines 0 comments Download
M webrtc/voice_engine/channel_manager.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +0 lines, -5 lines 0 comments Download
M webrtc/voice_engine/channel_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +3 lines, -10 lines 0 comments Download
M webrtc/voice_engine/channel_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +3 lines, -0 lines 0 comments Download
M webrtc/voice_engine/channel_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/voice_engine/include/voe_codec.h View 2 chunks +0 lines, -5 lines 0 comments Download
M webrtc/voice_engine/test/auto_test/standard/codec_test.cc View 1 chunk +0 lines, -24 lines 0 comments Download
M webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc View 1 2 3 4 5 3 chunks +0 lines, -5 lines 0 comments Download
M webrtc/voice_engine/voe_codec_impl.h View 1 chunk +0 lines, -2 lines 0 comments Download
M webrtc/voice_engine/voe_codec_impl.cc View 1 chunk +0 lines, -4 lines 0 comments Download

Messages

Total messages: 64 (21 generated)
the sun
On 2016/03/01 15:34:17, ivoc wrote: > mailto:ivoc@webrtc.org changed reviewers: > + mailto:solenberg@webrtc.org, mailto:stefan@webrtc.org, mailto:terelius@webrtc.org, mailto:tommi@webrtc.org ...
4 years, 9 months ago (2016-03-02 09:56:12 UTC) #4
ivoc
On 2016/03/02 09:56:12, the sun wrote: > On 2016/03/01 15:34:17, ivoc wrote: > > mailto:ivoc@webrtc.org ...
4 years, 9 months ago (2016-03-02 10:52:19 UTC) #5
ivoc
Please have a look at this CL to move the Rtc event log object from ...
4 years, 9 months ago (2016-03-02 14:20:22 UTC) #6
the sun
That's a very nice change! https://codereview.webrtc.org/1748403002/diff/40001/webrtc/api/java/src/org/webrtc/PeerConnection.java File webrtc/api/java/src/org/webrtc/PeerConnection.java (right): https://codereview.webrtc.org/1748403002/diff/40001/webrtc/api/java/src/org/webrtc/PeerConnection.java#newcode243 webrtc/api/java/src/org/webrtc/PeerConnection.java:243: public boolean startRtcEventLog(int file_descriptor) ...
4 years, 9 months ago (2016-03-03 09:25:13 UTC) #7
stefan-webrtc
https://codereview.webrtc.org/1748403002/diff/40001/webrtc/call/call.cc File webrtc/call/call.cc (right): https://codereview.webrtc.org/1748403002/diff/40001/webrtc/call/call.cc#newcode153 webrtc/call/call.cc:153: rtc::scoped_ptr<webrtc::RtcEventLog> event_log_ = RtcEventLog::Create(); Use std::unique_ptr. I'd also prefer ...
4 years, 9 months ago (2016-03-03 10:08:25 UTC) #8
the sun
https://codereview.webrtc.org/1748403002/diff/40001/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h File webrtc/modules/rtp_rtcp/include/rtp_rtcp.h (left): https://codereview.webrtc.org/1748403002/diff/40001/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h#oldcode78 webrtc/modules/rtp_rtcp/include/rtp_rtcp.h:78: RtcEventLog* event_log; On 2016/03/03 10:08:25, stefan-webrtc (holmer) wrote: > ...
4 years, 9 months ago (2016-03-03 10:17:15 UTC) #9
terelius
https://codereview.webrtc.org/1748403002/diff/40001/webrtc/api/peerconnection.cc File webrtc/api/peerconnection.cc (right): https://codereview.webrtc.org/1748403002/diff/40001/webrtc/api/peerconnection.cc#newcode2118 webrtc/api/peerconnection.cc:2118: if (call) { On 2016/03/03 09:25:12, the sun wrote: ...
4 years, 9 months ago (2016-03-10 10:42:32 UTC) #10
ivoc
Please take another look, the CL expanded a bit while addressing the previous comments. https://codereview.webrtc.org/1748403002/diff/40001/webrtc/api/java/src/org/webrtc/PeerConnection.java ...
4 years, 9 months ago (2016-03-10 13:15:36 UTC) #12
stefan-webrtc
https://codereview.webrtc.org/1748403002/diff/80001/webrtc/call/rtc_event_log.cc File webrtc/call/rtc_event_log.cc (right): https://codereview.webrtc.org/1748403002/diff/80001/webrtc/call/rtc_event_log.cc#newcode217 webrtc/call/rtc_event_log.cc:217: int64_t max_size_bytes) { Can we break this change out ...
4 years, 9 months ago (2016-03-11 10:11:53 UTC) #13
the sun
RtcEventLogProxy should even be an internal class in voice_engine/channel.cc. No need for the lower layers ...
4 years, 9 months ago (2016-03-11 10:29:47 UTC) #14
terelius
https://codereview.webrtc.org/1748403002/diff/80001/webrtc/call/rtc_event_log.cc File webrtc/call/rtc_event_log.cc (right): https://codereview.webrtc.org/1748403002/diff/80001/webrtc/call/rtc_event_log.cc#newcode217 webrtc/call/rtc_event_log.cc:217: int64_t max_size_bytes) { On 2016/03/11 10:11:53, stefan-webrtc (holmer) wrote: ...
4 years, 9 months ago (2016-03-11 12:30:44 UTC) #15
ivoc
Thanks for the comments! I hid the proxy object inside of VoE::Channel, and addressed the ...
4 years, 9 months ago (2016-03-16 17:00:32 UTC) #16
the sun
A great update. Thanks for doing this; the code is much nicer! https://codereview.webrtc.org/1748403002/diff/120001/webrtc/api/mediacontroller.cc File webrtc/api/mediacontroller.cc ...
4 years, 9 months ago (2016-03-21 13:03:09 UTC) #17
stefan-webrtc
https://codereview.webrtc.org/1748403002/diff/80001/webrtc/call/rtc_event_log.cc File webrtc/call/rtc_event_log.cc (right): https://codereview.webrtc.org/1748403002/diff/80001/webrtc/call/rtc_event_log.cc#newcode217 webrtc/call/rtc_event_log.cc:217: int64_t max_size_bytes) { On 2016/03/16 17:00:32, ivoc wrote: > ...
4 years, 9 months ago (2016-03-21 13:25:48 UTC) #18
terelius
Looks good, just a few questions below. https://codereview.webrtc.org/1748403002/diff/120001/webrtc/api/java/src/org/webrtc/PeerConnection.java File webrtc/api/java/src/org/webrtc/PeerConnection.java (right): https://codereview.webrtc.org/1748403002/diff/120001/webrtc/api/java/src/org/webrtc/PeerConnection.java#newcode241 webrtc/api/java/src/org/webrtc/PeerConnection.java:241: // the ...
4 years, 9 months ago (2016-03-21 20:47:46 UTC) #19
ivoc
Thanks again for the comments! See my responses below. https://codereview.webrtc.org/1748403002/diff/120001/webrtc/api/java/src/org/webrtc/PeerConnection.java File webrtc/api/java/src/org/webrtc/PeerConnection.java (right): https://codereview.webrtc.org/1748403002/diff/120001/webrtc/api/java/src/org/webrtc/PeerConnection.java#newcode241 webrtc/api/java/src/org/webrtc/PeerConnection.java:241: ...
4 years, 9 months ago (2016-03-22 13:44:55 UTC) #20
the sun
lgtm % final set of comments (mostly nits) https://codereview.webrtc.org/1748403002/diff/120001/webrtc/voice_engine/channel.cc File webrtc/voice_engine/channel.cc (right): https://codereview.webrtc.org/1748403002/diff/120001/webrtc/voice_engine/channel.cc#newcode110 webrtc/voice_engine/channel.cc:110: RTC_DCHECK(event_log_); ...
4 years, 9 months ago (2016-03-23 10:26:45 UTC) #21
ivoc
https://codereview.webrtc.org/1748403002/diff/140001/webrtc/api/peerconnectionproxy.h File webrtc/api/peerconnectionproxy.h (right): https://codereview.webrtc.org/1748403002/diff/140001/webrtc/api/peerconnectionproxy.h#newcode77 webrtc/api/peerconnectionproxy.h:77: PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) On 2016/03/23 10:26:44, the sun ...
4 years, 9 months ago (2016-03-23 14:27:26 UTC) #22
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1748403002/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1748403002/280001
4 years, 8 months ago (2016-03-30 15:20:10 UTC) #28
the sun
https://codereview.webrtc.org/1748403002/diff/280001/webrtc/audio/audio_receive_stream_unittest.cc File webrtc/audio/audio_receive_stream_unittest.cc (right): https://codereview.webrtc.org/1748403002/diff/280001/webrtc/audio/audio_receive_stream_unittest.cc#newcode104 webrtc/audio/audio_receive_stream_unittest.cc:104: EXPECT_CALL(*channel_proxy_, SetRtcEventLog(testing::NotNull())) Could check for argument to be &event_log_ ...
4 years, 8 months ago (2016-03-30 15:20:38 UTC) #29
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_arm64_rel on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/ios_arm64_rel/builds/8564)
4 years, 8 months ago (2016-03-30 15:24:22 UTC) #31
ivoc
https://codereview.webrtc.org/1748403002/diff/280001/webrtc/audio/audio_receive_stream_unittest.cc File webrtc/audio/audio_receive_stream_unittest.cc (right): https://codereview.webrtc.org/1748403002/diff/280001/webrtc/audio/audio_receive_stream_unittest.cc#newcode104 webrtc/audio/audio_receive_stream_unittest.cc:104: EXPECT_CALL(*channel_proxy_, SetRtcEventLog(testing::NotNull())) On 2016/03/30 15:20:38, the sun wrote: > ...
4 years, 8 months ago (2016-03-31 09:06:56 UTC) #32
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1748403002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1748403002/300001
4 years, 8 months ago (2016-03-31 09:19:14 UTC) #34
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_arm64_rel on tryserver.webrtc (JOB_TIMED_OUT, no build URL)
4 years, 8 months ago (2016-03-31 11:19:41 UTC) #36
terelius
Nice! LGTM.
4 years, 8 months ago (2016-04-01 11:26:01 UTC) #37
stefan-webrtc
lgtm webrtc/modules/
4 years, 8 months ago (2016-04-01 11:41:02 UTC) #38
tommi
https://codereview.webrtc.org/1748403002/diff/300001/webrtc/audio/audio_receive_stream.cc File webrtc/audio/audio_receive_stream.cc (right): https://codereview.webrtc.org/1748403002/diff/300001/webrtc/audio/audio_receive_stream.cc#newcode98 webrtc/audio/audio_receive_stream.cc:98: channel_proxy_->SetRtcEventLog(event_log); how is ownership and lifetime of |event_log| managed? ...
4 years, 8 months ago (2016-04-04 14:26:47 UTC) #39
ivoc
https://codereview.webrtc.org/1748403002/diff/300001/webrtc/audio/audio_receive_stream.cc File webrtc/audio/audio_receive_stream.cc (right): https://codereview.webrtc.org/1748403002/diff/300001/webrtc/audio/audio_receive_stream.cc#newcode98 webrtc/audio/audio_receive_stream.cc:98: channel_proxy_->SetRtcEventLog(event_log); On 2016/04/04 14:26:47, tommi-webrtc wrote: > how is ...
4 years, 8 months ago (2016-04-05 08:02:58 UTC) #40
tommi
lgtm. The ownership management can be improved on but OK as is since it sounds ...
4 years, 8 months ago (2016-04-07 13:21:53 UTC) #41
stefan-webrtc
Are we ready to land this? Btw, could you update the description to mention that ...
4 years, 7 months ago (2016-05-08 15:57:02 UTC) #42
ivoc
On 2016/05/08 15:57:02, stefan-webrtc (holmer) wrote: > Are we ready to land this? > > ...
4 years, 7 months ago (2016-05-09 07:48:27 UTC) #43
stefan-webrtc
On 2016/05/09 07:48:27, ivoc wrote: > On 2016/05/08 15:57:02, stefan-webrtc (holmer) wrote: > > Are ...
4 years, 7 months ago (2016-05-09 08:21:12 UTC) #44
ivoc
On 2016/05/09 08:21:12, stefan-webrtc (holmer) wrote: > On 2016/05/09 07:48:27, ivoc wrote: > > On ...
4 years, 7 months ago (2016-05-09 09:34:27 UTC) #46
ivoc
On 2016/05/09 08:21:12, stefan-webrtc (holmer) wrote: > On 2016/05/09 07:48:27, ivoc wrote: > > On ...
4 years, 7 months ago (2016-05-09 09:47:39 UTC) #47
stefan-webrtc
On 2016/05/09 09:47:39, ivoc wrote: > On 2016/05/09 08:21:12, stefan-webrtc (holmer) wrote: > > On ...
4 years, 7 months ago (2016-05-09 11:43:03 UTC) #48
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1748403002/380001
4 years, 6 months ago (2016-06-15 08:47:05 UTC) #51
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-06-15 09:29:49 UTC) #53
stefan-webrtc
lgtm again for bwe related changes.
4 years, 5 months ago (2016-06-29 08:42:59 UTC) #54
tommi
On 2016/06/29 08:42:59, stefan-webrtc (holmer) wrote: > lgtm again for bwe related changes. Is this ...
4 years, 5 months ago (2016-06-29 09:00:22 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/1748403002/420001
4 years, 5 months ago (2016-06-29 09:52:40 UTC) #58
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_dbg/builds/14589)
4 years, 5 months ago (2016-06-29 10:10:27 UTC) #60
ivoc
Committed patchset #16 (id:420001) manually as 1895526c6130e3d0e9b154f95079b8eda7567016 (presubmit successful).
4 years, 5 months ago (2016-06-29 11:57:08 UTC) #62
ivoc
4 years, 5 months ago (2016-06-30 07:59:20 UTC) #64
Message was sent while issue was closed.
A revert of this CL (patchset #16 id:420001) has been created in
https://codereview.webrtc.org/2111813002/ by ivoc@webrtc.org.

The reason for reverting is: Reverting all CLs related to moving the eventlog,
as they break Chromium tests..

Powered by Google App Engine
This is Rietveld 408576698