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

Issue 1291543006: Update Bind to match its comments and always capture by value. (Closed)

Created:
5 years, 4 months ago by noahric
Modified:
5 years, 2 months ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Update Bind to match its comments and always capture by value. Also update the generated count to 9 args. The existing comment is wrong, and the test even ensures it: Bind will capture reference values by reference. That makes it hard to use with AsyncInvoker, because you can't safely Bind to a function that takes (const) reference params. The new version of this code strips references in the bound object, so it captures by value, but can bind against functions that take const references, they'll just be references to the copy. As the class comment implies, actual by-reference args should be passed as pointers or things that safely share (e.g. scoped_refptr) and not references directly. A new test case ensures the pointer reference works. The new code will also give a compiler error if you try to bind to a non-const reference. BUG= Committed: https://crrev.com/5d9b92b53daf4db78fd090be4e210e07f786120d Cr-Commit-Position: refs/heads/master@{#10397}

Patch Set 1 #

Patch Set 2 : Fixed mac, which is still using C++03 + tr1. #

Patch Set 3 : Now fix windows. #

Patch Set 4 : Rebase and fixes to video capturer #

Patch Set 5 : Cleaned up some more uses of Bind. #

Patch Set 6 : Fixed android missed deref. #

Total comments: 4

Patch Set 7 : Removed references to std::remove_reference (har har) #

Total comments: 8

Patch Set 8 : CR comments, undid android encoder/decoder change #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+739 lines, -98 lines) Patch
M talk/media/webrtc/webrtcvideocapturer.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M talk/media/webrtc/webrtcvideocapturer.cc View 1 2 3 4 5 6 7 2 chunks +7 lines, -5 lines 1 comment Download
M webrtc/base/bind.h View 1 2 3 4 5 6 7 15 chunks +677 lines, -54 lines 0 comments Download
M webrtc/base/bind.h.pump View 1 2 3 4 5 6 7 4 chunks +4 lines, -15 lines 0 comments Download
M webrtc/base/bind_unittest.cc View 1 2 3 4 5 6 7 4 chunks +37 lines, -21 lines 0 comments Download
M webrtc/base/template_util.h View 1 2 3 4 5 6 7 1 chunk +13 lines, -0 lines 0 comments Download
M webrtc/p2p/base/transport.cc View 1 2 3 4 1 chunk +0 lines, -2 lines 0 comments Download

Messages

Total messages: 21 (5 generated)
noahric
Hey Peter, let me know what you think about this. I was trying to write ...
5 years, 4 months ago (2015-08-19 01:05:10 UTC) #2
noahric
Also, the linux failures appear to be happening in ToT, so I'm not sure what ...
5 years, 4 months ago (2015-08-19 02:46:07 UTC) #3
pthatcher1
They are almost all in Channel/ChannelManager, with a little in Session/Transport code. I don't see ...
5 years, 4 months ago (2015-08-20 23:54:24 UTC) #5
noahric
message: +glaznev, since I updated some android files and +magjed because I merged it with ...
5 years, 2 months ago (2015-10-22 00:12:33 UTC) #7
magjed_webrtc
I like this change because it makes rtc::Bind() more similar to std::Bind(). However, I don't ...
5 years, 2 months ago (2015-10-22 23:54:31 UTC) #8
noahric
On 2015/10/22 23:54:31, magjed_webrtc wrote: > I like this change because it makes rtc::Bind() more ...
5 years, 2 months ago (2015-10-23 00:34:04 UTC) #9
noahric
Thanks! https://codereview.webrtc.org/1291543006/diff/100001/webrtc/base/bind.h.pump File webrtc/base/bind.h.pump (right): https://codereview.webrtc.org/1291543006/diff/100001/webrtc/base/bind.h.pump#newcode65 webrtc/base/bind.h.pump:65: #include <type_traits> Ah, yeah, good point. And I ...
5 years, 2 months ago (2015-10-23 00:34:27 UTC) #10
magjed_webrtc
+tommi - I remember we had a short discussion if we should make rtc::Bind() capture ...
5 years, 2 months ago (2015-10-23 05:17:01 UTC) #12
noahric
Thanks! Yup, I did check webrtc/base. asyncinvoker has a few uses and a unit test, ...
5 years, 2 months ago (2015-10-23 06:02:16 UTC) #14
magjed_webrtc
lgtm
5 years, 2 months ago (2015-10-23 14:33:08 UTC) #15
tommi
On 2015/10/23 05:17:01, magjed_webrtc wrote: > +tommi - I remember we had a short discussion ...
5 years, 2 months ago (2015-10-23 16:11:37 UTC) #16
tommi
lgtm
5 years, 2 months ago (2015-10-24 17:23:08 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1291543006/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1291543006/140001
5 years, 2 months ago (2015-10-24 17:23:18 UTC) #19
commit-bot: I haz the power
Committed patchset #8 (id:140001)
5 years, 2 months ago (2015-10-24 18:14:51 UTC) #20
commit-bot: I haz the power
5 years, 2 months ago (2015-10-24 18:14:58 UTC) #21
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/5d9b92b53daf4db78fd090be4e210e07f786120d
Cr-Commit-Position: refs/heads/master@{#10397}

Powered by Google App Engine
This is Rietveld 408576698