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

Issue 16320005: Define EncodedVideoSource and RtcCapturedEncodingVideoCapturer. (Closed)

Created:
7 years, 6 months ago by hshi1
Modified:
7 years, 4 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam, jshin+watch_chromium.org, feature-media-reviews_chromium.org
Visibility:
Public.

Description

Define EncodedVideoSource and RtcCapturedEncodingVideoCapturer. Defined the interfaces for EVS (EncodedVideoSource) and related IPC messages between renderer and browser processes for the purpose of encoded screen capture. Added RtcCapturedEncodingVideoCapturerFactory which implements the libjingle::WebRtcVideoEncoderFactory class, and the corresponding RtcCapturedEncodingVideoCapturer which implements the webrtc::VideoEncoder. Modify MediaStreamDependencyFactory and inject RtcCapturedEncodingVideoCaptureFactory in PeerConnectionFactory. For the time being, the factory will only be instantiated for Chrome OS and ARM. BUG=238515 TEST=trybot Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=209760

Patch Set 1 : . #

Total comments: 208

Patch Set 2 : Addressing Ami's comments - part 1. #

Patch Set 3 : Addressing Ami's comments - part 2. #

Patch Set 4 : Addressing Ami's comments - part 3. #

Patch Set 5 : Addressing Ami's comments - part 4. #

Patch Set 6 : Addressing Ami's comments - part 5. #

Total comments: 51

Patch Set 7 : Rebased to trunk@205640 and resolved merge conflicts. #

Patch Set 8 : Fix two typos in VideoCaptureImpl that causes compile warnings. Fix a line with 80+ chars. #

Patch Set 9 : Use int instead of size_t for bitstream buffer size to match IPC definition. #

Total comments: 1

Patch Set 10 : Addressing Ami's comments - part 6. #

Patch Set 11 : Rename encoded_video_source_messages to encoded_video_capture_messages. Add buffer_size in OnOpened… #

Total comments: 9

Patch Set 12 : Fix memory leak, race in capabilities reporting. #

Patch Set 13 : Updated due to sheu@. #

Total comments: 6

Patch Set 14 : Changes due to sheu@. #

Patch Set 15 : Merged changes to MediaStreamDependencyFactory; inject RtcEncodingVideoCapturerFactory in PCFactory. #

Patch Set 16 : Clarify the lifetime of EVS clients and the RTC encoding capturer factory. #

Total comments: 18

Patch Set 17 : Add back the accidentally removed #ifdef (CrOS+ARM) guard. #

Patch Set 18 : Update the VCMessageFilter::Delegate overrides in unittest. #

Total comments: 4

Patch Set 19 : Addressing Ami's comments - part 7. #

Patch Set 20 : Forgot to update the gypi file for the renamed header encoded_video_capture_messages.h #

Patch Set 21 : Update EncodedBitstreamBuffer to match sheu@'s CL. #

Patch Set 22 : Add NULL check for |client_|. It could be NULL due to CloseBitstream requested by libjingle. #

Patch Set 23 : Remove the static ARCH_CPU_ARMEL guard; define runtime switch to enable encoded screen capture. #

Patch Set 24 : Add the missing MEDIA_EXPORT for the definition of EBB; this seems to be causing some test failures. #

Patch Set 25 : Rebase; rename EVS-related members in VideoCaptureImpl to be encoding-specific; only fetch encoding… #

Patch Set 26 : Added bitstream_opened_ flag to track the state of EVS. Make sure to ignore messages from browser a… #

Total comments: 4

Patch Set 27 : Rebased to 207015; addressed Ami's most recent comments. #

Total comments: 10

Patch Set 28 : Address piman@ and palmer@'s comments. Rebased at 207246. #

Patch Set 29 : Rebased at 209208. Fixed conflicts. #

Patch Set 30 : Rebased to 295333. #

Patch Set 31 : Rebased at 209707. Fix compile warnings. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1295 lines, -19 lines) Patch
M chrome/browser/chromeos/login/chrome_restart_request.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 1 chunk +1 line, -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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +3 lines, -0 lines 0 comments Download
M content/common/content_message_generator.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, -0 lines 0 comments Download
A content/common/media/encoded_video_capture_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 23 24 25 26 27 1 chunk +128 lines, -0 lines 0 comments Download
M content/content_common.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 1 chunk +1 line, -0 lines 0 comments Download
M content/content_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 23 24 25 26 27 28 29 1 chunk +4 lines, -0 lines 0 comments Download
M content/public/common/content_switches.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 +3 lines, -0 lines 0 comments Download
M content/public/common/content_switches.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 +5 lines, -0 lines 0 comments Download
M content/renderer/media/media_stream_dependency_factory.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 2 chunks +17 lines, -1 line 0 comments Download
A content/renderer/media/rtc_encoding_video_capturer.h View 1 2 3 4 5 1 chunk +56 lines, -0 lines 0 comments Download
A content/renderer/media/rtc_encoding_video_capturer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +228 lines, -0 lines 0 comments Download
A content/renderer/media/rtc_encoding_video_capturer_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +61 lines, -0 lines 0 comments Download
A content/renderer/media/rtc_encoding_video_capturer_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +100 lines, -0 lines 0 comments Download
M content/renderer/media/video_capture_impl.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 5 chunks +63 lines, -1 line 0 comments Download
M content/renderer/media/video_capture_impl.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 5 chunks +197 lines, -1 line 0 comments Download
M content/renderer/media/video_capture_impl_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +14 lines, -0 lines 0 comments Download
M content/renderer/media/video_capture_impl_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +6 lines, -0 lines 0 comments Download
M content/renderer/media/video_capture_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +25 lines, -0 lines 0 comments Download
M content/renderer/media/video_capture_message_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +50 lines, -0 lines 0 comments Download
M content/renderer/media/video_capture_message_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +82 lines, -15 lines 0 comments Download
M content/renderer/media/video_capture_message_filter_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +15 lines, -0 lines 0 comments Download
M ipc/ipc_message_start.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 +2 lines, -1 line 0 comments Download
A media/base/encoded_bitstream_buffer.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 1 chunk +52 lines, -0 lines 0 comments Download
A media/base/encoded_bitstream_buffer.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 +50 lines, -0 lines 0 comments Download
M media/media.gyp 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 2 chunks +4 lines, -0 lines 0 comments Download
A media/video/encoded_video_source.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 1 chunk +76 lines, -0 lines 0 comments Download
A media/video/video_encode_types.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 1 chunk +51 lines, -0 lines 0 comments Download

Messages

Total messages: 57 (0 generated)
hshi1
Re-uploaded a fresh issue for review because Ami is having rietveld trouble with the previous ...
7 years, 6 months ago (2013-06-07 17:55:37 UTC) #1
Ami GONE FROM CHROMIUM
Boom https://codereview.chromium.org/16320005/diff/15001/content/common/content_message_generator.h File content/common/content_message_generator.h (right): https://codereview.chromium.org/16320005/diff/15001/content/common/content_message_generator.h#newcode1 content/common/content_message_generator.h:1: // Copyright (c) 2012 The Chromium Authors. All ...
7 years, 6 months ago (2013-06-08 00:18:01 UTC) #2
hshi1
Thanks a lot +@fischman for the comments! I want to make the necessary changes related ...
7 years, 6 months ago (2013-06-10 19:12:31 UTC) #3
Ami GONE FROM CHROMIUM
https://codereview.chromium.org/16320005/diff/15001/media/video/video_encode_types.h File media/video/video_encode_types.h (right): https://codereview.chromium.org/16320005/diff/15001/media/video/video_encode_types.h#newcode17 media/video/video_encode_types.h:17: // Data to represent limitations for a particular encoder ...
7 years, 6 months ago (2013-06-10 19:29:31 UTC) #4
hshi1
On 2013/06/10 19:29:31, Ami Fischman wrote: > https://codereview.chromium.org/16320005/diff/15001/media/video/video_encode_types.h > File media/video/video_encode_types.h (right): > > https://codereview.chromium.org/16320005/diff/15001/media/video/video_encode_types.h#newcode17 ...
7 years, 6 months ago (2013-06-10 19:35:56 UTC) #5
Ami GONE FROM CHROMIUM
Runtime config doesn't have to be static for my comments to apply; only the set ...
7 years, 6 months ago (2013-06-10 19:41:25 UTC) #6
hshi1
On 2013/06/10 19:41:25, Ami Fischman wrote: > Resource availability (i.e. limits on how much encode ...
7 years, 6 months ago (2013-06-10 19:49:57 UTC) #7
Ami GONE FROM CHROMIUM
Like I said, this isn't the end of the world if you keep it. Given ...
7 years, 6 months ago (2013-06-10 19:57:32 UTC) #8
hshi1
On 2013/06/10 19:57:32, Ami Fischman wrote: > Like I said, this isn't the end of ...
7 years, 6 months ago (2013-06-10 20:02:24 UTC) #9
Ami GONE FROM CHROMIUM
> Assuming that the HW encoder supports multiple concurrent contexts I doubt this is the ...
7 years, 6 months ago (2013-06-10 20:49:38 UTC) #10
sheu
On 2013/06/10 20:49:38, Ami Fischman wrote: > > Assuming that the HW encoder supports multiple ...
7 years, 6 months ago (2013-06-10 20:53:29 UTC) #11
hshi1
I've just uploaded Patch Set #3 which addresses an additional 35 comments, mostly dealing with ...
7 years, 6 months ago (2013-06-10 21:49:34 UTC) #12
Ami GONE FROM CHROMIUM
On Mon, Jun 10, 2013 at 2:49 PM, <hshi@chromium.org> wrote: > (1) how do I ...
7 years, 6 months ago (2013-06-10 21:57:20 UTC) #13
hshi1
Still work in progress. Uploaded Patch Set #3 to address the following comments: (1) Replace ...
7 years, 6 months ago (2013-06-11 00:48:20 UTC) #14
Ami GONE FROM CHROMIUM
> > https://codereview.chromium.**org/16320005/diff/15001/media/** > video/encoded_video_source.h#**newcode59<https://codereview.chromium.org/16320005/diff/15001/media/video/encoded_video_source.h#newcode59> > media/video/encoded_video_**source.h:59: class MEDIA_EXPORT > EncodedVideoSource { > On 2013/06/08 ...
7 years, 6 months ago (2013-06-11 17:29:54 UTC) #15
hshi1
Ami - I've uploaded a patch set named "Addressing comments - Part 4." I've reverted ...
7 years, 6 months ago (2013-06-11 17:49:42 UTC) #16
hshi1
Ami - PTAL patch set #6 ("Addressing Ami's comments - part 5."). I believe this ...
7 years, 6 months ago (2013-06-11 19:51:22 UTC) #17
hshi1
https://codereview.chromium.org/16320005/diff/15001/content/renderer/media/video_capture_impl_manager.h File content/renderer/media/video_capture_impl_manager.h (right): https://codereview.chromium.org/16320005/diff/15001/content/renderer/media/video_capture_impl_manager.h#newcode55 content/renderer/media/video_capture_impl_manager.h:55: RtcEncodingVideoCapturerFactory* encoding_capturer_factory() const { On 2013/06/08 00:18:01, Ami Fischman ...
7 years, 6 months ago (2013-06-12 00:50:24 UTC) #18
Ami GONE FROM CHROMIUM
The key is that scoped_refptr<> and scoped_ptr<> each impose their own lifecycle model. It is ...
7 years, 6 months ago (2013-06-12 01:04:39 UTC) #19
Ami GONE FROM CHROMIUM
Comments on PS#6 https://codereview.chromium.org/16320005/diff/115001/content/renderer/media/rtc_encoding_video_capturer.cc File content/renderer/media/rtc_encoding_video_capturer.cc (right): https://codereview.chromium.org/16320005/diff/115001/content/renderer/media/rtc_encoding_video_capturer.cc#newcode17 content/renderer/media/rtc_encoding_video_capturer.cc:17: media::EncodedVideoSource* encoded_video_source, doco lifetime https://codereview.chromium.org/16320005/diff/115001/content/renderer/media/rtc_encoding_video_capturer.cc#newcode67 content/renderer/media/rtc_encoding_video_capturer.cc:67: ...
7 years, 6 months ago (2013-06-12 01:44:05 UTC) #20
hshi1
https://codereview.chromium.org/16320005/diff/15001/media/base/encoded_bitstream_buffer.h File media/base/encoded_bitstream_buffer.h (right): https://codereview.chromium.org/16320005/diff/15001/media/base/encoded_bitstream_buffer.h#newcode17 media/base/encoded_bitstream_buffer.h:17: class EncodedBitstreamBuffer : On 2013/06/08 00:18:01, Ami Fischman wrote: ...
7 years, 6 months ago (2013-06-12 17:52:39 UTC) #21
hshi1
PS#11 addresses the following: (1) Renamed encoded_video_source_messages.h to encoded_video_capture_messages.h; (2) OnBitstreamOpened passes back vector instead ...
7 years, 6 months ago (2013-06-12 21:02:14 UTC) #22
sheu
https://chromiumcodereview.appspot.com/16320005/diff/115001/content/renderer/media/video_capture_message_filter.cc File content/renderer/media/video_capture_message_filter.cc (right): https://chromiumcodereview.appspot.com/16320005/diff/115001/content/renderer/media/video_capture_message_filter.cc#newcode104 content/renderer/media/video_capture_message_filter.cc:104: VideoCaptureMessageFilter::Delegate* VideoCaptureMessageFilter::find_delegate( On 2013/06/12 17:52:39, hshi1 wrote: > On ...
7 years, 6 months ago (2013-06-12 22:35:04 UTC) #23
hshi1
https://codereview.chromium.org/16320005/diff/194001/content/renderer/media/video_capture_impl.cc File content/renderer/media/video_capture_impl.cc (right): https://codereview.chromium.org/16320005/diff/194001/content/renderer/media/video_capture_impl.cc#newcode148 content/renderer/media/video_capture_impl.cc:148: capabilities_ = capabilities; On 2013/06/12 22:35:05, sheu wrote: > ...
7 years, 6 months ago (2013-06-13 00:25:31 UTC) #24
hshi1
Updated IPC definitions for GetCaps and OpenBistream (added session_id). https://codereview.chromium.org/16320005/diff/194001/content/renderer/media/video_capture_message_filter.cc File content/renderer/media/video_capture_message_filter.cc (right): https://codereview.chromium.org/16320005/diff/194001/content/renderer/media/video_capture_message_filter.cc#newcode106 content/renderer/media/video_capture_message_filter.cc:106: ...
7 years, 6 months ago (2013-06-13 00:46:52 UTC) #25
sheu
https://chromiumcodereview.appspot.com/16320005/diff/194001/content/renderer/media/video_capture_impl.cc File content/renderer/media/video_capture_impl.cc (right): https://chromiumcodereview.appspot.com/16320005/diff/194001/content/renderer/media/video_capture_impl.cc#newcode499 content/renderer/media/video_capture_impl.cc:499: buffer_id, (uint8*)shm->memory(), size, metadata); On 2013/06/13 00:25:31, hshi1 wrote: ...
7 years, 6 months ago (2013-06-13 05:36:50 UTC) #26
hshi1
Uploaded PS#14 with buffer sizes changed to uint32. Re:sheu@ - unfortunately the DCHECK for capture ...
7 years, 6 months ago (2013-06-13 19:18:46 UTC) #27
Ami GONE FROM CHROMIUM
On Thu, Jun 13, 2013 at 12:18 PM, <hshi@chromium.org> wrote: > Re:sheu@ - unfortunately the ...
7 years, 6 months ago (2013-06-13 19:33:04 UTC) #28
hshi1
Note: ronghuawu@ just confirmed that he has rolled libjingle DEPS this morning to r342. So ...
7 years, 6 months ago (2013-06-13 19:33:40 UTC) #29
hshi1
On 2013/06/13 19:33:04, Ami Fischman wrote: > On Thu, Jun 13, 2013 at 12:18 PM, ...
7 years, 6 months ago (2013-06-13 20:26:06 UTC) #30
hshi1
Ami, PTAL at PS#16. I believe this has clarified questions on the lifetime of the ...
7 years, 6 months ago (2013-06-13 22:03:46 UTC) #31
Ami GONE FROM CHROMIUM
Reviewed PS#16 https://codereview.chromium.org/16320005/diff/248001/content/renderer/media/media_stream_dependency_factory.cc File content/renderer/media/media_stream_dependency_factory.cc (right): https://codereview.chromium.org/16320005/diff/248001/content/renderer/media/media_stream_dependency_factory.cc#newcode499 content/renderer/media/media_stream_dependency_factory.cc:499: RtcEncodingVideoCapturerFactory* rtc_encoding_capturer_factory = Needs to be flag-protected. ...
7 years, 6 months ago (2013-06-13 22:56:57 UTC) #32
hshi1
PTAL @ PS#19, thanks! https://codereview.chromium.org/16320005/diff/248001/content/renderer/media/media_stream_dependency_factory.cc File content/renderer/media/media_stream_dependency_factory.cc (right): https://codereview.chromium.org/16320005/diff/248001/content/renderer/media/media_stream_dependency_factory.cc#newcode499 content/renderer/media/media_stream_dependency_factory.cc:499: RtcEncodingVideoCapturerFactory* rtc_encoding_capturer_factory = On 2013/06/13 ...
7 years, 6 months ago (2013-06-13 23:33:40 UTC) #33
hshi1
PTAL at PS#21. This updates the definition of EncodedBitstreamBuffer to match that of sheu@'s CL ...
7 years, 6 months ago (2013-06-14 18:18:33 UTC) #34
hshi1
PTAL at PS#23. Per offline discussion, I've removed the static guard (#if defined(ARCH_CPU_ARMEL)) and defined ...
7 years, 6 months ago (2013-06-15 00:02:11 UTC) #35
Ami GONE FROM CHROMIUM
LGTM % nits (and you have red bots) https://codereview.chromium.org/16320005/diff/248001/content/renderer/media/video_capture_impl.cc File content/renderer/media/video_capture_impl.cc (right): https://codereview.chromium.org/16320005/diff/248001/content/renderer/media/video_capture_impl.cc#newcode110 content/renderer/media/video_capture_impl.cc:110: base::Unretained(this), ...
7 years, 6 months ago (2013-06-18 20:56:27 UTC) #36
hshi1
Thanks! I've uploaded PS#27 and re-running trybots. Adding additional owners for review: darin@: ipc/ piman@: ...
7 years, 6 months ago (2013-06-18 23:01:19 UTC) #37
hshi1
Sorry I just realized that security review is required for ipc/ipc_message_start.h. +cevans@, palmer@ - PTAL ...
7 years, 6 months ago (2013-06-19 01:25:27 UTC) #38
piman
https://codereview.chromium.org/16320005/diff/389002/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/16320005/diff/389002/content/browser/renderer_host/render_process_host_impl.cc#newcode912 content/browser/renderer_host/render_process_host_impl.cc:912: switches::kEnableEncodedScreenCapture, Also needs to go in kForwardSwitches in chrome/browser/chromeos/login/chrome_restart_request.cc ...
7 years, 6 months ago (2013-06-19 18:23:58 UTC) #39
hshi1
https://codereview.chromium.org/16320005/diff/389002/content/common/media/encoded_video_capture_messages.h File content/common/media/encoded_video_capture_messages.h (right): https://codereview.chromium.org/16320005/diff/389002/content/common/media/encoded_video_capture_messages.h#newcode51 content/common/media/encoded_video_capture_messages.h:51: media::VideoCaptureSessionId /* session_id */) On 2013/06/19 18:23:58, piman wrote: ...
7 years, 6 months ago (2013-06-19 18:25:43 UTC) #40
palmer
LGTM % nits, and a type/design question. https://codereview.chromium.org/16320005/diff/389002/content/common/media/encoded_video_capture_messages.h File content/common/media/encoded_video_capture_messages.h (right): https://codereview.chromium.org/16320005/diff/389002/content/common/media/encoded_video_capture_messages.h#newcode1 content/common/media/encoded_video_capture_messages.h:1: // Copyright ...
7 years, 6 months ago (2013-06-19 20:24:08 UTC) #41
hshi1
https://codereview.chromium.org/16320005/diff/389002/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/16320005/diff/389002/content/browser/renderer_host/render_process_host_impl.cc#newcode912 content/browser/renderer_host/render_process_host_impl.cc:912: switches::kEnableEncodedScreenCapture, On 2013/06/19 18:23:58, piman wrote: > Also needs ...
7 years, 6 months ago (2013-06-19 21:16:24 UTC) #42
hshi1
piman@ - since sheu@'s OOTO, I don't think the browser-side CL can land very soon. ...
7 years, 6 months ago (2013-06-19 23:21:51 UTC) #43
hshi1
piman@ - ping again... now that R29 is branched can I land this? Thanks.
7 years, 5 months ago (2013-06-28 20:51:17 UTC) #44
piman
LGTM if Ami is ok with the extra IPC surface - I'll redirect further CLs ...
7 years, 5 months ago (2013-07-01 23:05:34 UTC) #45
Ami GONE FROM CHROMIUM
On 2013/07/01 23:05:34, piman wrote: > LGTM if Ami is ok with the extra IPC ...
7 years, 5 months ago (2013-07-01 23:09:18 UTC) #46
piman
On Mon, Jul 1, 2013 at 4:09 PM, <fischman@chromium.org> wrote: > On 2013/07/01 23:05:34, piman ...
7 years, 5 months ago (2013-07-01 23:20:57 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hshi@chromium.org/16320005/451001
7 years, 5 months ago (2013-07-01 23:28:16 UTC) #48
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 5 months ago (2013-07-02 01:01:04 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hshi@chromium.org/16320005/451001
7 years, 5 months ago (2013-07-02 02:28:45 UTC) #50
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 5 months ago (2013-07-02 03:20:04 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/hshi@chromium.org/16320005/476001
7 years, 5 months ago (2013-07-02 16:47:24 UTC) #52
commit-bot: I haz the power
Change committed as 209760
7 years, 5 months ago (2013-07-02 20:03:44 UTC) #53
Ami GONE FROM CHROMIUM
Since the browser side of EVS never landed and sheu@ is not planning to land ...
7 years, 4 months ago (2013-07-31 19:24:59 UTC) #54
hshi1
On 2013/07/31 19:24:59, Ami Fischman wrote: > Since the browser side of EVS never landed ...
7 years, 4 months ago (2013-07-31 19:47:54 UTC) #55
Ami GONE FROM CHROMIUM
I don't understand this logic. If VEA fails to land for some reason, we can ...
7 years, 4 months ago (2013-07-31 20:34:37 UTC) #56
hshi1
7 years, 4 months ago (2013-07-31 22:55:35 UTC) #57
Message was sent while issue was closed.
FWIW I've uploaded the revert CL (that reverts 3 related chromium revisions) to
https://codereview.chromium.org/21421002/

Powered by Google App Engine
This is Rietveld 408576698