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

Issue 264793017: Implements RTP header dumping. (Closed)

Created:
6 years, 7 months ago by jiayl
Modified:
6 years, 6 months ago
CC:
chromium-reviews, fischman+watch_chromium.org, feature-media-reviews_chromium.org, wjia+watch_chromium.org, mcasas+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Implements RTP header dumping. WebRtcRtpDumpHandler implements RTP header dump creation. It's owned by WebRtcLoggingHandlerHost and receives RTP packet callbacks through P2PSocketHost. WebRtcRtpDumpWriter is owned by WebRtcDumpHandler and writes the RTP header into a memory buffer. When the in-memory buffer is full, it compresses the data and writes it to the disk. After the dumping is stopped, WebRtcLoggingHandlerHost calls ReleaseDump to get the completed dump as a .gz file and uploads it. BUG=363459 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=273745 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=273980

Patch Set 1 #

Total comments: 11

Patch Set 2 : Add SetWebRtcRtpPacketCallback on RenderProcessHost #

Patch Set 3 : Add WebRtcRtpDumpWriter #

Total comments: 13

Patch Set 4 : #

Total comments: 43

Patch Set 5 : #

Total comments: 26

Patch Set 6 : #

Total comments: 22

Patch Set 7 : #

Total comments: 8

Patch Set 8 : #

Total comments: 59

Patch Set 9 : for tommi's #

Total comments: 34

Patch Set 10 : Fix threading #

Total comments: 2

Patch Set 11 : #

Total comments: 1

Patch Set 12 : for Henrik's comments #

Total comments: 26

Patch Set 13 : for Henrik's #

Total comments: 20

Patch Set 14 : for vrk's comments #

Patch Set 15 : fix std::vector::data() #

Patch Set 16 : fix leak #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2620 lines, -136 lines) Patch
M chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.cc View 1 2 3 4 5 6 7 4 chunks +31 lines, -7 lines 0 comments Download
M chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_apitest.cc View 1 2 3 4 5 6 1 chunk +35 lines, -0 lines 0 comments Download
A chrome/browser/media/rtp_dump_type.h View 1 2 3 4 5 6 7 8 1 chunk +12 lines, -0 lines 0 comments Download
M chrome/browser/media/webrtc_log_uploader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/media/webrtc_log_uploader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +51 lines, -14 lines 0 comments Download
M chrome/browser/media/webrtc_log_uploader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 6 chunks +89 lines, -17 lines 0 comments Download
M chrome/browser/media/webrtc_logging_handler_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +51 lines, -18 lines 0 comments Download
M chrome/browser/media/webrtc_logging_handler_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 10 chunks +151 lines, -16 lines 0 comments Download
A chrome/browser/media/webrtc_rtp_dump_handler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +131 lines, -0 lines 0 comments Download
A chrome/browser/media/webrtc_rtp_dump_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +342 lines, -0 lines 0 comments Download
A chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +393 lines, -0 lines 0 comments Download
A chrome/browser/media/webrtc_rtp_dump_writer.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +135 lines, -0 lines 0 comments Download
A chrome/browser/media/webrtc_rtp_dump_writer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +450 lines, -0 lines 0 comments Download
A chrome/browser/media/webrtc_rtp_dump_writer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +362 lines, -0 lines 0 comments Download
M chrome/browser/resources/hangout_services/thunk.js View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +28 lines, -3 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 2 chunks +4 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_dispatcher_host.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +16 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_dispatcher_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +59 lines, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 6 chunks +27 lines, -3 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 9 chunks +124 lines, -18 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp.h View 1 2 3 4 5 6 3 chunks +3 lines, -3 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 5 chunks +21 lines, -10 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server.h View 1 2 3 4 5 6 1 chunk +2 lines, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server.cc View 1 2 3 4 5 6 2 chunks +8 lines, -8 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_udp.h View 1 2 3 4 5 6 1 chunk +2 lines, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host_udp.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +11 lines, -5 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +11 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +27 lines, -2 lines 0 comments Download
M content/public/browser/render_process_host.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +15 lines, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.h View 1 2 3 4 5 6 7 1 chunk +4 lines, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.cc View 1 2 3 4 5 6 7 1 chunk +8 lines, -0 lines 0 comments Download

Messages

Total messages: 55 (0 generated)
Henrik Grunell
Hi Jiayang. Some comments and questions. https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS File chrome/browser/media/DEPS (right): https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS#newcode5 chrome/browser/media/DEPS:5: "+third_party/libjingle", I'm not ...
6 years, 7 months ago (2014-05-05 14:38:03 UTC) #1
jiayl
https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS File chrome/browser/media/DEPS (right): https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS#newcode5 chrome/browser/media/DEPS:5: "+third_party/libjingle", On 2014/05/05 14:38:03, Henrik Grunell wrote: > I'm ...
6 years, 7 months ago (2014-05-05 16:50:56 UTC) #2
jiayl
Adding tommi for more feedback on the overall design.
6 years, 7 months ago (2014-05-05 23:25:15 UTC) #3
Henrik Grunell
The general design and data pipeline looks fine to me. https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS File chrome/browser/media/DEPS (right): https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS#newcode5 ...
6 years, 7 months ago (2014-05-06 08:34:26 UTC) #4
tommi (sloooow) - chröme
https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS File chrome/browser/media/DEPS (right): https://codereview.chromium.org/264793017/diff/1/chrome/browser/media/DEPS#newcode5 chrome/browser/media/DEPS:5: "+third_party/libjingle", On 2014/05/06 08:34:26, Henrik Grunell wrote: > On ...
6 years, 7 months ago (2014-05-06 08:58:07 UTC) #5
jiayl
Removed the DEPS change; Added WebRtcRtpDumpWriter, which is mostly ported from libjingle; Made it possible ...
6 years, 7 months ago (2014-05-06 23:25:42 UTC) #6
Henrik Grunell
I think the general design looks good. I stopped reviewing the details when I saw ...
6 years, 7 months ago (2014-05-07 09:38:19 UTC) #7
jiayl
PTAL! Henrik: webrtc_log*, webrtc_rtp_dump* tommi: owner of chrome/browser/media mallinath: content/browser/renderer_host/p2p/* jam: content/public/*
6 years, 7 months ago (2014-05-12 22:14:39 UTC) #8
Henrik Grunell
First round of review. https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_log_uploader.cc#newcode182 chrome/browser/media/webrtc_log_uploader.cc:182: post_data.get(), compressed_log, upload_done_data.rtp_dumps, meta_data); |upload_done_data| ...
6 years, 7 months ago (2014-05-13 09:12:30 UTC) #9
tommi (sloooow) - chröme
looked at chrome/browser/media/* lgtm with one request. https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_log_uploader.h File chrome/browser/media/webrtc_log_uploader.h (right): https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_log_uploader.h#newcode33 chrome/browser/media/webrtc_log_uploader.h:33: std::string name; ...
6 years, 7 months ago (2014-05-13 15:19:55 UTC) #10
jiayl
Addressed Henrik's comments. PTAL. The new patch is created after a sync, so it has ...
6 years, 7 months ago (2014-05-13 21:48:15 UTC) #11
Mallinath (Gone from Chromium)
On 2014/05/13 21:48:15, jiayl wrote: > Addressed Henrik's comments. PTAL. > > The new patch ...
6 years, 7 months ago (2014-05-14 00:56:42 UTC) #12
Mallinath (Gone from Chromium)
https://codereview.chromium.org/264793017/diff/110001/content/browser/renderer_host/p2p/socket_dispatcher_host.cc File content/browser/renderer_host/p2p/socket_dispatcher_host.cc (right): https://codereview.chromium.org/264793017/diff/110001/content/browser/renderer_host/p2p/socket_dispatcher_host.cc#newcode155 content/browser/renderer_host/p2p/socket_dispatcher_host.cc:155: if (dump_incoming_rtp_packet_ != incoming || Do we really need ...
6 years, 7 months ago (2014-05-14 00:57:00 UTC) #13
Henrik Grunell
Nice work on this Jiayang. Another round. https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_log_uploader.cc#newcode182 chrome/browser/media/webrtc_log_uploader.cc:182: post_data.get(), compressed_log, ...
6 years, 7 months ago (2014-05-14 12:14:12 UTC) #14
jiayl
https://codereview.chromium.org/264793017/diff/110001/content/browser/renderer_host/p2p/socket_dispatcher_host.cc File content/browser/renderer_host/p2p/socket_dispatcher_host.cc (right): https://codereview.chromium.org/264793017/diff/110001/content/browser/renderer_host/p2p/socket_dispatcher_host.cc#newcode155 content/browser/renderer_host/p2p/socket_dispatcher_host.cc:155: if (dump_incoming_rtp_packet_ != incoming || On 2014/05/14 00:57:01, mallinath2 ...
6 years, 7 months ago (2014-05-14 15:54:51 UTC) #15
jiayl
Some clarifications. I'll update the patch for the other comments. Thanks! https://codereview.chromium.org/264793017/diff/110001/chrome/browser/media/webrtc_logging_handler_host.cc File chrome/browser/media/webrtc_logging_handler_host.cc (right): ...
6 years, 7 months ago (2014-05-14 16:07:58 UTC) #16
jiayl
PTAL! Thanks! https://codereview.chromium.org/264793017/diff/110001/content/browser/renderer_host/p2p/socket_host.cc File content/browser/renderer_host/p2p/socket_host.cc (right): https://codereview.chromium.org/264793017/diff/110001/content/browser/renderer_host/p2p/socket_host.cc#newcode550 content/browser/renderer_host/p2p/socket_host.cc:550: return; On 2014/05/14 00:57:01, mallinath2 wrote: > ...
6 years, 7 months ago (2014-05-14 18:59:11 UTC) #17
jam
https://codereview.chromium.org/264793017/diff/190001/content/public/browser/render_process_host.h File content/public/browser/render_process_host.h (right): https://codereview.chromium.org/264793017/diff/190001/content/public/browser/render_process_host.h#newcode216 content/public/browser/render_process_host.h:216: virtual void StartRtpDump(bool incoming, bool outgoing) = 0; can ...
6 years, 7 months ago (2014-05-14 23:59:34 UTC) #18
Henrik Grunell
https://codereview.chromium.org/264793017/diff/150001/chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.cc File chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.cc (right): https://codereview.chromium.org/264793017/diff/150001/chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.cc#newcode301 chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.cc:301: host->StartRtpDump(params->incoming, params->outgoing); On 2014/05/14 16:07:58, jiayl wrote: > On ...
6 years, 7 months ago (2014-05-15 14:36:33 UTC) #19
jiayl
PTAL! Thanks. https://codereview.chromium.org/264793017/diff/150001/chrome/browser/media/webrtc_logging_handler_host.cc File chrome/browser/media/webrtc_logging_handler_host.cc (right): https://codereview.chromium.org/264793017/diff/150001/chrome/browser/media/webrtc_logging_handler_host.cc#newcode238 chrome/browser/media/webrtc_logging_handler_host.cc:238: FireGenericDoneCallback(&start_callback, false, "Invalid argument."); On 2014/05/15 14:36:34, ...
6 years, 7 months ago (2014-05-15 23:06:21 UTC) #20
jam
https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc File content/browser/renderer_host/p2p/socket_host.cc (right): https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc#newcode510 content/browser/renderer_host/p2p/socket_host.cc:510: packet_dump_callback_.Reset(); actually, how is this method thread safe to ...
6 years, 7 months ago (2014-05-16 22:03:22 UTC) #21
jiayl
PTAL https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc File content/browser/renderer_host/p2p/socket_host.cc (right): https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc#newcode510 content/browser/renderer_host/p2p/socket_host.cc:510: packet_dump_callback_.Reset(); On 2014/05/16 22:03:22, jam wrote: > actually, ...
6 years, 7 months ago (2014-05-16 22:52:43 UTC) #22
tommi (sloooow) - chröme
not lgtm - sorry, I realized I missed some of the files last time. https://codereview.chromium.org/264793017/diff/270001/chrome/browser/media/rtp_dump_type.h ...
6 years, 7 months ago (2014-05-17 10:18:36 UTC) #23
jiayl
https://codereview.chromium.org/264793017/diff/270001/chrome/browser/media/rtp_dump_type.h File chrome/browser/media/rtp_dump_type.h (right): https://codereview.chromium.org/264793017/diff/270001/chrome/browser/media/rtp_dump_type.h#newcode8 chrome/browser/media/rtp_dump_type.h:8: enum RtpDumpType { On 2014/05/17 10:18:37, tommi wrote: > ...
6 years, 7 months ago (2014-05-19 17:32:58 UTC) #24
jiayl
PTAL.
6 years, 7 months ago (2014-05-19 17:33:13 UTC) #25
jam
https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc File content/browser/renderer_host/p2p/socket_host.cc (right): https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc#newcode510 content/browser/renderer_host/p2p/socket_host.cc:510: packet_dump_callback_.Reset(); On 2014/05/16 22:52:43, jiayl wrote: > On 2014/05/16 ...
6 years, 7 months ago (2014-05-20 15:13:13 UTC) #26
jiayl
PTAL https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc File content/browser/renderer_host/p2p/socket_host.cc (right): https://codereview.chromium.org/264793017/diff/260001/content/browser/renderer_host/p2p/socket_host.cc#newcode510 content/browser/renderer_host/p2p/socket_host.cc:510: packet_dump_callback_.Reset(); On 2014/05/20 15:13:14, jam wrote: > On ...
6 years, 7 months ago (2014-05-20 17:28:07 UTC) #27
jam
https://codereview.chromium.org/264793017/diff/330001/content/public/browser/render_process_host.h File content/public/browser/render_process_host.h (right): https://codereview.chromium.org/264793017/diff/330001/content/public/browser/render_process_host.h#newcode220 content/public/browser/render_process_host.h:220: // |packet_callback| must be called on the IO thread. ...
6 years, 7 months ago (2014-05-21 16:36:46 UTC) #28
jiayl
PTAL https://codereview.chromium.org/264793017/diff/330001/content/public/browser/render_process_host.h File content/public/browser/render_process_host.h (right): https://codereview.chromium.org/264793017/diff/330001/content/public/browser/render_process_host.h#newcode220 content/public/browser/render_process_host.h:220: // |packet_callback| must be called on the IO ...
6 years, 7 months ago (2014-05-21 17:53:15 UTC) #29
jam
lgtm https://codereview.chromium.org/264793017/diff/350001/content/public/browser/render_process_host.h File content/public/browser/render_process_host.h (right): https://codereview.chromium.org/264793017/diff/350001/content/public/browser/render_process_host.h#newcode220 content/public/browser/render_process_host.h:220: // on the UI thread too. nit: remove ...
6 years, 7 months ago (2014-05-21 23:50:09 UTC) #30
jiayl
Ping Henrik and tommi.
6 years, 7 months ago (2014-05-22 16:24:25 UTC) #31
Henrik Grunell
Another round. https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_log_uploader.cc#newcode108 chrome/browser/media/webrtc_log_uploader.cc:108: // TODO(jiayl): adds the RTP dump records ...
6 years, 7 months ago (2014-05-23 12:17:50 UTC) #32
jiayl
PTAL. Thanks! https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_log_uploader.cc#newcode108 chrome/browser/media/webrtc_log_uploader.cc:108: // TODO(jiayl): adds the RTP dump records ...
6 years, 7 months ago (2014-05-23 17:48:35 UTC) #33
Henrik Grunell
https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_rtp_dump_handler.cc File chrome/browser/media/webrtc_rtp_dump_handler.cc (right): https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_rtp_dump_handler.cc#newcode211 chrome/browser/media/webrtc_rtp_dump_handler.cc:211: return; On 2014/05/23 17:48:36, jiayl wrote: > On 2014/05/23 ...
6 years, 7 months ago (2014-05-26 09:51:02 UTC) #34
jiayl
PTAL https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_rtp_dump_handler.cc File chrome/browser/media/webrtc_rtp_dump_handler.cc (right): https://codereview.chromium.org/264793017/diff/290001/chrome/browser/media/webrtc_rtp_dump_handler.cc#newcode211 chrome/browser/media/webrtc_rtp_dump_handler.cc:211: return; On 2014/05/26 09:51:03, Henrik Grunell wrote: > ...
6 years, 7 months ago (2014-05-27 20:41:40 UTC) #35
Henrik Grunell
https://codereview.chromium.org/264793017/diff/400001/chrome/browser/media/webrtc_rtp_dump_writer.cc File chrome/browser/media/webrtc_rtp_dump_writer.cc (right): https://codereview.chromium.org/264793017/diff/400001/chrome/browser/media/webrtc_rtp_dump_writer.cc#newcode114 chrome/browser/media/webrtc_rtp_dump_writer.cc:114: if (buffer->size()) { On 2014/05/27 20:41:41, jiayl wrote: > ...
6 years, 6 months ago (2014-05-28 11:57:50 UTC) #36
jiayl
https://codereview.chromium.org/264793017/diff/400001/chrome/browser/media/webrtc_rtp_dump_writer.cc File chrome/browser/media/webrtc_rtp_dump_writer.cc (right): https://codereview.chromium.org/264793017/diff/400001/chrome/browser/media/webrtc_rtp_dump_writer.cc#newcode114 chrome/browser/media/webrtc_rtp_dump_writer.cc:114: if (buffer->size()) { On 2014/05/28 11:57:51, Henrik Grunell wrote: ...
6 years, 6 months ago (2014-05-28 13:48:02 UTC) #37
Henrik Grunell
Thanks for explaining all the questions. LGTM if final comment is fixed.
6 years, 6 months ago (2014-05-28 15:03:59 UTC) #38
jiayl
vrk, could you review the */media/* changes as the MEDIA owner? tommi is OK with ...
6 years, 6 months ago (2014-05-28 15:11:48 UTC) #39
vrk (LEFT CHROMIUM)
lgtm media OWNERS Just a bunch of nits. I didn't look super carefully at everything ...
6 years, 6 months ago (2014-05-28 23:55:06 UTC) #40
jiayl
The CQ bit was checked by jiayl@chromium.org
6 years, 6 months ago (2014-05-29 18:29:18 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jiayl@chromium.org/264793017/480001
6 years, 6 months ago (2014-05-29 18:30:44 UTC) #42
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-05-29 18:30:48 UTC) #43
commit-bot: I haz the power
A disapproval has been posted by following reviewers: tommi@chromium.org. Please make sure to get positive ...
6 years, 6 months ago (2014-05-29 18:30:49 UTC) #44
tommi (sloooow) - chröme
lgtm
6 years, 6 months ago (2014-05-29 20:24:31 UTC) #45
jiayl
The CQ bit was checked by jiayl@chromium.org
6 years, 6 months ago (2014-05-29 20:34:13 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jiayl@chromium.org/264793017/500001
6 years, 6 months ago (2014-05-29 20:35:54 UTC) #47
jiayl
The CQ bit was checked by jiayl@chromium.org
6 years, 6 months ago (2014-05-29 22:03:43 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jiayl@chromium.org/264793017/520001
6 years, 6 months ago (2014-05-29 22:04:48 UTC) #49
jiayl
The CQ bit was checked by jiayl@chromium.org
6 years, 6 months ago (2014-05-29 22:51:39 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jiayl@chromium.org/264793017/540001
6 years, 6 months ago (2014-05-29 22:56:29 UTC) #51
commit-bot: I haz the power
Change committed as 273745
6 years, 6 months ago (2014-05-30 07:09:46 UTC) #52
jiayl
The CQ bit was checked by jiayl@chromium.org
6 years, 6 months ago (2014-05-30 16:15:39 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jiayl@chromium.org/264793017/560001
6 years, 6 months ago (2014-05-30 16:17:52 UTC) #54
commit-bot: I haz the power
6 years, 6 months ago (2014-05-31 01:32:34 UTC) #55
Message was sent while issue was closed.
Change committed as 273980

Powered by Google App Engine
This is Rietveld 408576698