forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This CL removes a base::Bind overload without bound arguments. The difference to generic base::Bind is the type check for the bound Runnable: the generic one ensures any argument of the Runnable is not non-const reference, OTHT, the overload being removed checks nothing. Where, comments and tests asserts any *bound* argument should not be non-const reference, so the generic one has been checked excessively. This CL loosen the type check to match the requirement, and then the overloaded base::Bind is no longer needed. BUG= Review URL: https://codereview.chromium.org/1512833002 Cr-Commit-Position: refs/heads/master@{#365988}
- Loading branch information
Showing
4 changed files
with
66 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters