 Chromium Code Reviews
 Chromium Code Reviews Issue 8483003:
  Callback API Change: Reimplement Bind(); support IgnoreResult, full currying, and use less types  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 8483003:
  Callback API Change: Reimplement Bind(); support IgnoreResult, full currying, and use less types  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: base/template_util.h | 
| diff --git a/base/template_util.h b/base/template_util.h | 
| index f19fb4b4ee043e28ea3d4e8583d99784f6302511..916e942c87de547a32e1bd51ddc7881e280b3480 100644 | 
| --- a/base/template_util.h | 
| +++ b/base/template_util.h | 
| @@ -70,7 +70,7 @@ struct ConvertHelper { | 
| static NoType Test(...); | 
| template <typename From> | 
| - static From Create(); | 
| + static From& Create(); | 
| }; | 
| // Used to determine if a type is a struct/union/class. Inspired by Boost's |