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

Unified Diff: base/cancelable_callback.h

Issue 8915024: Retry 114494 - Remove BindStateHolder and have Bind() return a Callback<> object directly." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/callback_unittest.cc ('k') | base/debug/trace_event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/cancelable_callback.h
diff --git a/base/cancelable_callback.h b/base/cancelable_callback.h
index b432f61602c87abaa58fca3549c975b860f2cd8e..4de7d12201d184d64fb2bda9d1aa5de62b466d7f 100644
--- a/base/cancelable_callback.h
+++ b/base/cancelable_callback.h
@@ -173,8 +173,7 @@ class CancelableCallback<void(A1)> {
}
private:
- void Forward(
- typename internal::CallbackParamTraits<A1>::ForwardType a1) const {
+ void Forward(A1 a1) const {
callback_.Run(a1);
}
« no previous file with comments | « base/callback_unittest.cc ('k') | base/debug/trace_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698