DescriptionUpdate 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
Messages
Total messages: 21 (5 generated)
|